Quote:
|
mysql_num_rows() expects parameter 1 to be resource, boolean given in ... on line 85
|
is your problem.
It probably means you have a bad query trying to be run. You should either post your register.php here in [code][/code] tags or add something like:
Code:
if (!$query) die(mysql_error());
right before line 85 and tell us what the new error is.