1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<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>
|