You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
833 B
PHTML

14 years ago
<?php
14 years ago
require_once ('../bootstrap.php');
$title = "ChangeLog";
$header = "Datenbank-Auszug";
14 years ago
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";
14 years ago
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";
14 years ago
include ("includes/footer.php");
?>