[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
DATA_RECOVERY
/
ALL BACKUP
/
SISMADAK SERVER
/
22-04-2019
/
xampp
/
contrib
/
[
Home
]
File: mysql.php
<html> <head> <title>PHP und MySQL</title> </head> <body> <h1>PHP und MySQL</h1> <table border="1"> <tr> <th>Vorname</th> <th>Nachname</th> <th>Telefonnummer</th> </tr> <?php mysql_connect("localhost", "oswald", "geheim"); mysql_select_db("phonebook"); $query = "SELECT * FROM users"; $result = mysql_query($query); while ($row = mysql_fetch_array ($result)) { echo "<tr>"; echo "<td>".$row['firstname']."</td>"; echo "<td>".$row['lastname']."</td>"; echo "<td>".$row['phone']."</td>"; echo "</tr>"; } ?> </table> </body> </html>