Please help
I am using following code to check whether login user id and password is ok
If ok or fail -> I want to redirect to a file ...but code is not working please help
Thanks in advance
if(isset($_POST['login'])){
if (($_POST['loginid'] == $uid) and ($_POST['password'] == $pas))
{
header("Location: http://prajaktasoftware.com/INTROL.html/");
exit;
}
else
{
header("Location: http://prajaktasoftware.com/index.html/");
exit;
}






Bookmarks