Jump to content

Correction Require Please :(


vikram12345

Recommended Posts

My user authentication code --

 

 

<?php

 

$useremail = $_POST['emailfield'] ;

$userpassword = $_POST['pwfield'] ;

 

require ('sqlauth2.php') ;

mysql_select_db($database, $con);

$sql = "SELECT * FROM userregistry WHERE email='".$useremail."' AND password='".$userpassword."'" ;

$run = mysql_query($sql) ;

$row = mysql_fetch_array($run) ;

 

if(mysql_num_rows($run) == 1)

{

echo "SUCCESS :) <br>" ;

}

else

{

echo "No login for you :( " ;

}

 

 

 

?>

 

 

 

Looks perfect, but I keep getting this error

 

 

Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in D:\xampp\htdocs\bullet2\logincheck.php on line 10

 

Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in D:\xampp\htdocs\bullet2\logincheck.php on line 12

No login for you :(

 

 

Any idea ?

Searched everywhere, couldn't find anything proper.

I know there is something wrong somewhere, can't seem to find it.

Help me out people, thanks !!!

Edited by PFMaBiSmAd
removed wysiwyg formatting to fix micro size font
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.