Jump to content

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

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.