Hi,
I need some help here - my head is not quite with me as the flu is getting to me and I can not remember why the code like this does not work .
but the following does
I need some help here - my head is not quite with me as the flu is getting to me and I can not remember why the code like this does not work .
Code:
<?
if(($_login == "Login")&&($admin_pass == $admin_password)){
//What ever!
}
?>
but the following does
Code:
<?
if(($_REQUEST["login"] == "Login")&&($_REQUEST["admin_pass"] == $admin_password)){
//What ever!
}
?>