1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
|
<?php
include('db.php');
$sql = "SELECT id, name, email, homepage FROM crownhill";
$result = mysql_query($sql);
while ($row = mysql_fetch_assoc($result)) {
echo "$row[name] | $row[id] | $row[email]";
}
mysql_close();
?>
|