Using a login page can you get a message to appear to say the details they entered are incorrect once they have clicked submit instead of appearing as soon as you load the page up?
if ($num == 1)
header("location: Logged In/WelcomeUserPage.php?ClientID=".$HTTP_POST_VARS['ClientID'].""
;
echo $_SESSION['ClientID'];
// ... redirect to destination ...
} else {
print "Details either incorrect or not submitted";
I am getting the message "Details either incorrect or not submitted" stragiht away before I have done anything. May be having a pop-up alert would suffice! any help will be much appreciated! Thanks!
if ($num == 1)
header("location: Logged In/WelcomeUserPage.php?ClientID=".$HTTP_POST_VARS['ClientID'].""

echo $_SESSION['ClientID'];
// ... redirect to destination ...
} else {
print "Details either incorrect or not submitted";
I am getting the message "Details either incorrect or not submitted" stragiht away before I have done anything. May be having a pop-up alert would suffice! any help will be much appreciated! Thanks!