diff options
Diffstat (limited to 'www-ssl/admin/Recentchanges.php')
-rwxr-xr-x | www-ssl/admin/Recentchanges.php | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/www-ssl/admin/Recentchanges.php b/www-ssl/admin/Recentchanges.php deleted file mode 100755 index ec167e17..00000000 --- a/www-ssl/admin/Recentchanges.php +++ /dev/null @@ -1,29 +0,0 @@ -<?PHP - -$title = "ChangeLog"; -$header = "Datenbank-Auszug"; -include ("../../includes/header.php"); - -$SQL = "SELECT * FROM `ChangeLog` ORDER BY `Time` DESC LIMIT 0,10000"; -$Erg = mysql_query($SQL, $con); - -echo mysql_error($con); - -echo "<table border=1>\n"; -echo "<tr>\n\t<th>Time</th>\n\t<th>User</th>\n\t<th>Commend</th>\n\t<th>SQL Commad</th>\n</tr>\n"; - -for ($n = 0 ; $n < mysql_num_rows($Erg) ; $n++) -{ - echo "<tr>\n"; - echo "\t<td>". mysql_result( $Erg, $n, "Time"). "</td>\n"; - echo "\t<td>". UID2Nick(mysql_result( $Erg, $n, "UID")). displayavatar(mysql_result( $Erg, $n, "UID")). "</td>\n"; - echo "\t<td>". mysql_result( $Erg, $n, "Commend"). "</td>\n"; - echo "\t<td>". mysql_result( $Erg, $n, "SQLCommad"). "</td>\n"; - echo "</tr>\n"; -} - -echo "</table>\n"; - -include ("../../includes/footer.php"); -?> - |