PHP ver gevorderde |
|
ik krijg deze error:
Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/httpd/vhosts/simpelscripting.be/httpdocs/gratisphpbb/register.php on line 19
het script werkt wel!
hier het stukje waar de fout waarschijnlijk in zit:
$notexists = mysql_query("SELECT COUNT(username) FROM phpbb_users WHERE username=$snaam");
$results = mysql_num_rows($notexists);
if ($results != 0) // De gebruikersnaam bestaat nog niet
{
$notexists = mysql_query("SELECT COUNT(username) FROM phpbb_users WHERE username=$snaam"); if ($results != 0) // De gebruikersnaam bestaat nog niet {
|