Thanks for the quick response. Here is the code I'm using and its fully functional on MySql 4.O/Windows XP. The Linux server is running MySlq 3.2. I got the code from web monkey. Is there another reference site where I could get code. I've also tried using PHP Code Genie but I run into error messages with that one. I'm still trying to learn PHPMyAdmin
=========================================
<?php
$db = mysql_connect("localhost", "root");
mysql_select_db("aralib",$db);
$result = mysql_query("SELECT * FROM staff ",$db);
echo "<table border=1 width=640>\n";
echo "<tr><td>Name</td>
<td>Title</td>
<td>Phone</td>
<td>Fax</td>
<td>Email</td></tr>\n";
while ($myrow = mysql_fetch_row($result)) {
printf("<tr><td>%s %s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td></tr>\n",
$myrow[1], $myrow[2], $myrow[4], $myrow[6], $myrow[8], $myrow[3]);
}
echo "</table>\n";
?>