users.php
<?php
category.php
include 'connect.php';
include 'header.php';
$sql = "SELECT * FROM users ";
$result = mysql_query($sql);
echo '<table border="4" width="350px"><tr bgcolor="#ffffff"><th width="40px">Foto</th><th width="200px">Nick</th><th width="100px">correo</th></tr>';
while($row = mysql_fetch_assoc($result)) {
echo '<tr class="cell">';
echo '<td width="40px"><img src="https://minotar.net/helm/' . $row['player'] . '/40.png"></td>';
echo '<td width="200px" align="center">' . $row['player'] . '</td>';
echo '<td width="300px"><font color="#FFFCB2">' . $row['online'] . '</font></td>';
echo '</tr>';
}
echo "</table>";
include 'footer.php';
?>
Comments