Well, apparently the page stops at this line in the source code:
Code:
<body style="font-size: 11pt">
After that, there is nothing else. Is this code executed after that line or is there any other code that would be stopping the source from executing?
Also, in your code, you have the following that does not need to be in there (the highlighted part):
Code:
mysql_connect(localhost,$username,$password);
@mysql_select_db($database) or die( "Unable to select database");
mysql_query($query);
$query = "SELECT * FROM Entry_Form WHERE Attend_Round = '".$_POST['AttendRound']."' LIMIT 0, 5";
$result = mysql_query($query) or die(mysql_error());
$row = mysql_fetch_array($result) or die(mysql_error());
echo 'Total Rows: '.mysql_num_rows($result);
?>
Hope this helps.
Bookmarks