bzr branch
http://gegoxaren.bato24.eu/bzr/extremedating/trunk
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
<html> <body> <?php include "./php/db.php"; $query = "SELECT * FROM Users"; $userinfo = $db->query($query); $fetch = $userinfo->fetchAll(); echo '<table border="1">'; foreach ($fetch as $fetcha) { echo "<tr>"; foreach ($fetcha as $fetchb) { echo "<td>"; echo $fetchb; echo "</td>"; } echo "</tr>"; } echo "</table>"; ?> </body> </html> |