Onbekend |
|
<table>
<?php
$db = mysql_connect("localhost","username","password");
mysql_select_db("databasenaam", $db);
$result = mysql_query("SELECT waarde1, waarde2, waarde3 FROM tabel");
while($inhoud=mysql_fetch_assoc($result)){
echo("<tr><td>".$inhoud['waarde1']."</td><td>".$inhoud['waarde2']."</td><td>".$inhoud['waarde3']."</td></tr>");
}
mysql_close();
?>
</table>
<table> <?php $result = mysql_query("SELECT waarde1, waarde2, waarde3 FROM tabel"); echo("<tr><td>".$inhoud['waarde1']."</td><td>".$inhoud['waarde2']."</td><td>".$inhoud['waarde3']."</td></tr>"); } ?> </table>
|