nphls Posted May 6, 2006 Share Posted May 6, 2006 I'd like to know if you could give me a help in headers. I don't know how to use them.My code is like this:[code]//PASSWORD VERIFICATIONif (($pass)!=($pass2)) //if the values stored in the 2 variables are//different we redirect the users to a previously created error page{ header("Location: error-pwverify.php"); //the user will be sent to this page Die();}[/code]I wanted to display like an error message when the passwrods aren't the same.I hope you guys fan help me out of this.Thanks Quote Link to comment Share on other sites More sharing options...
wildteen88 Posted May 7, 2006 Share Posted May 7, 2006 Change your code to the following:[code]//PASSWORD VERIFICATIONif (($pass)!=($pass2)){ header("Redirect: 5; URL=error-pwverify.php"); //the user will be sent to this page after 5 secounds die("The password you specified does not match the password set. Please try again.<br /><br />This page will be redirected in 5 secounds");}[/code] Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.