Hi, can someone help me with this PHP example, as I keep getting the following error:
Notice: Undefined variable: id in c:\apache\htdocs\php\employee5.php on line 7
Bob Smith
John Roberts
Brad Johnson
Here is the PHP code:
<html>
<body>
<?php
$db = mysql_connect("localhost", "root");
mysql_select_db("mydb",$db);
// display individual record
if ($id) {
$result = mysql_query("SELECT FROM employees WHERE id = $id",$db);
$myrow = mysql_fetch_array($result);
printf("First name: %s\n<br>", $myrow["first"]);
printf("Last name: %s\n<br>", $myrow["last"]);
printf("Address: %s\n<br>", $myrow["address"]);
printf("Position: %s\n<br>", $myrow["position"]);
} else {
// show employee list
$result = mysql_query("SELECT FROM employees",$db);
if ($myrow = mysql_fetch_array($result)) {
// display list if there are records to display
do {
printf("<a href=\"%s?id=%s\">%s %s</a><br>\n", "http://localhost/test/PHP/employee5.php", $myrow["id"], $myrow["first"], $myrow["last"]);
} while ($myrow = mysql_fetch_array($result));
} else {
// no records to display
echo "Sorry, no records were found!";
}
}
?>
</body>
</html>
http://hotwired.lycos.com/webmonkey/99/13/index2a_page4.html
Thanks for any help given!