Can some one help a newbee. I can not get this to work. If I take out the db part then the hearder and footer show. If I leave it as is nothing is on the page. Can some one tell me what I'm doing wrong. Thakn you.
<?php
include("header.php");
$linkID = @mysql_connect("99.99.99.99", "userid", "password");
mysql_select_db("Staff", $linkID);
$resultID = mysql_query("SELECT Name, Title, Bio, Email, PicLocation FROM Employee", $linkID);
print "<table>";
print "<tr><th>Name</th><tr><th>Title</th><th>Bio</th><th>Email</th><th>Pic Location</th>";
while (list($Name, $Title, $Bio, $Email, $PicLocation) = mysql_fetch_row($resultID))
{
print "<tr><td>$Name</td><td>$Title</td><td>$Bio</td><td>$Email</td><td>$PicLocation</td></tr>";
}
print "</table>"
mysql_close($linkID);
include("footer.php");
?>