I am trying to get a content management system up and running on my site. I want to
have the thing password protected, and this was how I was going about it, passing on
name and password variables in the urls of the management system. However, this doesnt
work, it just says your password in correct, even when it is not.
Any help ?
<?php
$code = mysql_query("SELECT password FROM newsauthors WHERE $name = author");
?>
<?php
if ($code = $password) {
?>
//Content manager stuff goes here
<?
} else {
echo( "You have entered an incorrect password, or you do not have access to this part
of the Staff area. Please press back on your browser and re-enter details." );
}
?>
Thanks in advance