Can anyone please help me with the following:
$query = "SELECT * FROM employee
WHERE (FirstName='$FirstName) AND (LastName='$LastName')";
$result = mysql_query($query);
$num_results = mysql_num_rows($result);
$row = mysql_fetch_object($result);
Each time I run this script I get the error message "supplied arguement is not valid", I been through it, but can find no problems.
Thanks in advance, Jo