ryanmetzler3 Posted August 19, 2013 Share Posted August 19, 2013 Well basically my html form is at the bottom of the code. Then I just use the $_Post function to get what was input. And then a bunch of if statements to check if you are entering a legit email, duplicate usernames etc etc. Line 50 is the final if statement and it should register the user. But it keeps spitting this error at me: Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in C:\wamp\www\Swapezee\register.php on line 33. It reads this error for line 33, 36, and 48 so basically anywhere num_rows is used. There is no new user in the DB so the error is effecting the functionality of the program. Any idea how to fix this? <?php error_reporting(E_ALL^ E_NOTICE); ?> <html> <head> </head> <body> <?php if ($_POST['registerbtn']) { $getuser = $_POST['user']; $getemail = $_POST['email']; $getpass = $_POST['pass']; $getretypepass = $_POST['retypepass']; if ($getuser) { if ($getemail) { if ($getpass) { if ($getretypepass) { if ($getpass === $getretypepass) { if ( (strlen($getemail) >= 7) && (strstr($getemail,"@")) && (strstr($getemail, ".")) ) { require("connect.php"); $query = mysql_query("SELECT * FROM users WHERE username='$getuser'"); $numrows = mysql_num_rows($query); if ($numrows == 0) { $query = mysql_query("SELECT * FROM users WHERE email='$getemail'"); $numrows = mysql_num_rows($query); if ($numrows == 0) { $password = md5(md5("R4E2M0".$password."R4E2M0")); $date = date("F d, Y"); $code = md5(rand()); mysql_query("INSERT INTO users VALUES ( '','$getuser','$password','$getemail','1','$code','$date' )"); $query = mysql_query("SELECT * FROM users WHERE username ='$getuser'"); $numrows = mysql_num_rows($query); if ($numrows == 1) { echo "Thanks your account has been created!"; } else { $errormsg = "An error has occured. Your account was not created."; } } else { $errormsg = "There is already a user with that email."; } } else { $errormsg = "There is already a user with that username."; } mysql_close(); } else { $errormsg = "You must enter a valid email address to register."; } } else { $errormsg = "Your passwords did not match."; } } else { $errormsg = "You must retype your password to register."; } } else { $errormsg = "You must enter your password to register."; } } else{ $errormsg = "You must enter your email to register."; } } else { $errormsg = "You must enter your username to register."; } } echo "$form"; $form = "<form action='register.php' method='post'> <table> <tr> <td></td> <td><font color='red'>$errormsg</font></td> </tr> <tr> <td>Username:</td> <td><input type='text' name='user' value'$getuser'/></td> </tr> <tr> <td>Email:</td> <td><input type='text' name='email' value'$getemail'/></td> </tr> <tr> <td>Password:</td> <td><input type='password' name='pass' value=''/></td> </tr> <tr> <td>Re-type Password:</td> <td><input type='password' name='retypepass' value=''/></td> </tr> <tr> <td></td> <td><input type='submit' name='registerbtn' value='Register!'/></td> </tr> </form>"; echo "$form"; ?> </body> </html> Link to comment https://forums.phpfreaks.com/topic/281370-num_rows-issue-warning-mysql_num_rows-expects-parameter-1-to-be-resource-boolean-given/ Share on other sites More sharing options...
.josh Posted August 19, 2013 Share Posted August 19, 2013 It means your query is failing. Change your mysql_query line(s) to this: $query = mysql_query("SELECT * FROM users WHERE username='$getuser'") or die(mysql_error()); what does it output? Link to comment https://forums.phpfreaks.com/topic/281370-num_rows-issue-warning-mysql_num_rows-expects-parameter-1-to-be-resource-boolean-given/#findComment-1445860 Share on other sites More sharing options...
ryanmetzler3 Posted August 20, 2013 Author Share Posted August 20, 2013 It means your query is failing. Change your mysql_query line(s) to this: $query = mysql_query("SELECT * FROM users WHERE username='$getuser'") or die(mysql_error()); what does it output? It turns out my table name was just user instead of users. That is where programming can be frustrating haha. Thanks for the help mate. Link to comment https://forums.phpfreaks.com/topic/281370-num_rows-issue-warning-mysql_num_rows-expects-parameter-1-to-be-resource-boolean-given/#findComment-1445915 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.