I'm having a hard time putting the code together to pretty well match
what you're saying. What you described is precisely what I'm after
but keep coming up with syntax errors. Snippet below:
$query = "SELECT * FROM password_tbl WHERE
$updater=='updater_column'") AND ($passwordd=='passwordd_column');
$res=mysql_query($query);
if(!mysql_num_rows($res))
{
echo 'Wrong password, user $updater, try again.';
exit;
}
> 07142007 1231 GMT-6 DST
>
> Ok. So what I would do is:
> Ask for the username and password in a form:
> match the username to a username in the db and then the password to
> password. If the username fits and the password doesnt, then they cant
> go on to the next step.
> I would just repost the page with an error on it in red saying next to
> the password - try again.
>