Jump to content

[SOLVED] login error


harkly

Recommended Posts

I have a login that isn't working. It works for another site and I set them up identically.

 

<?php

session_start();

$userid = $_POST['userid'];

$password = $_POST['password'];

$con = mysql_connect("localhost", "root", "") or die("Sorry, unable to validate you now");

mysql_select_db("artdb", $con);


$query = "SELECT * from admins where userid = '$userid' and password = '$password'";

$result = mysql_query($query);

if (mysql_num_rows($result) == 0)

{
   echo "<h2>Sorry, your account was not validated.</h2><br>\n";
   echo "<a href=\"admin.php\">Try again</a><br>\n";
} else
{
   $_SESSION['store_admin'] = $userid;
   header("Location: admin.php");
}
?>

 

Error I am getting --

Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in C:\wamp\www\artdb\admin\validate.php on line 18

 

this is line 18

if (mysql_num_rows($result) == 0)

 

Sorry, your account was not validated.

 

My table --

userid  test

name  test          

password  test

 

 

Also,

 

If I open the other site and login then I can log into the new site.

Link to comment
https://forums.phpfreaks.com/topic/137822-solved-login-error/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.