The reason I ask is I have 2 queries with this being my 2nd one:
$sql_notary= "SELECT ID, FirstName, LastName FROM $notary WHERE ID = '$NotaryID' ";
$this_notary = @($sql_notary,$connection) or die("Couldn't execute query.");
while ($this_notary = mysql_fetch_array($notary)) {
$ID = $this_notary['ID'];
$LastName = $this_notary['LastName'];
$FirstName = $this_notary['FirstName'];
and it states this when I load the page:
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource with the error occuring on the line with the "WHILE" statement.