tabel op scherm tonen
<html>
<head>
<title>Tabel tonen</title>
</head>
<body bgcolor=”blue” text=”black”>
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
$connectie = mysql_connect(localhost, root, );
mysql_select_db(telefoonboekdb);
$query = SELECT * FROM telefoonboektbl;
$resultaat = mysql_query($query);
echo <table border=5 align=center>;
echo
<tr><td>ID</td><td>voornaam</td><td>Achternaam</td><td>adres</td><td>Woonplaats</td><td>Telefoon</td><tr>;
while (list($id, $voornaam, $achternaam, $adres, $woonplaats, $telefoonnummer);
mysql_fetch_row($resultaat))
{
echo
<tr><td>, $id, </td><td>, $voornaam, </td><td>, $achternaam, </s td><td>, $adres, </td>
<td>, $woonplaats, </td><td>, $telefoonnummer, </td></tr>;
}
echo </table>;
mysql_close($connectie);
?>
$connectie = mysql_connect(localhost, root, );
mysql_select_db(telefoonboekdb);
$query = SELECT * FROM telefoonboektbl;
$resultaat = mysql_query($query);
echo <table border=5 align=center>;
echo
<tr><td>ID</td><td>voornaam</td><td>Achternaam</td><td>adres</td><td>Woonplaats</td><td>Telefoon</td><tr>;
while (list($id, $voornaam, $achternaam, $adres, $woonplaats, $telefoonnummer);
mysql_fetch_row($resultaat))
{
echo
<tr><td>, $id, </td><td>, $voornaam, </td><td>, $achternaam, </s td><td>, $adres, </td>
<td>, $woonplaats, </td><td>, $telefoonnummer, </td></tr>;
}
echo </table>;
mysql_close($connectie);
?>
</body>
</html>
En je quotes kloppen ook niet helemaal.
Toevoeging op 19/03/2012 18:38:11:
ok . ja ik zie het zelf al
Toevoeging op 19/03/2012 18:55:16:
Kris kun je aub nog een tipje van de sluier lichten ik kom er niet uit.
Code (php)
1
2
3
4
2
3
4
<?php
while (list($id, $voornaam, $achternaam, $adres, $woonplaats, $telefoonnummer) =
mysql_fetch_row($resultaat))
?>
while (list($id, $voornaam, $achternaam, $adres, $woonplaats, $telefoonnummer) =
mysql_fetch_row($resultaat))
?>
Zoals je ziet op example 2