lee123 Posted August 13, 2009 Share Posted August 13, 2009 hi all, i have a prob, at the end of this script it send you to a either 2 blank page with one's sayings echo "<a href='javascript:history.back()'>Your message is successfully emailed PLEASE CLICK HERE TO RETURN</a>"; } else { echo "<a href='javascript:history.back()'>SORRY YOU HAVE PROVIDED AN IMVALID CODE PLEASE CLICK HERE TO RETRY</a>"; i would like to send them to 2 pages i have setup eg a www.thankyou.com and a www.wrongcode.com (this page with a back button) any help please, here is the full php file <?php session_start(); if( $_SESSION['6_letters_code'] == $_POST['6_letters_code'] && !empty($_SESSION['6_letters_code'] ) ) { $to = "[email protected]"; $email_subject = "This is the email subject"; $name = $_POST['name']; $email = $_POST['email']; $number = $_POST['number']; $message = $_POST['message']; $email_body = "Name " . $name . " . Email Address " . $email . " . Phone Number " . $number . ". Message: " . $message; mail($to, $email_subject, $email_body); echo "<a href='javascript:history.back()'>Your message is successfully emailed PLEASE CLICK HERE TO RETURN</a>"; } else { echo "<a href='javascript:history.back()'>SORRY YOU HAVE PROVIDED AN IMVALID CODE PLEASE CLICK HERE TO RETRY</a>"; } ?> thanks lee Quote Link to comment https://forums.phpfreaks.com/topic/170065-php-redirect/ Share on other sites More sharing options...
TeNDoLLA Posted August 13, 2009 Share Posted August 13, 2009 Simplified... <?php if (code_is_right) { header('Location: www.thankyou.com'); } else { header('Location: www.wrongcode.com'); } Quote Link to comment https://forums.phpfreaks.com/topic/170065-php-redirect/#findComment-897515 Share on other sites More sharing options...
lee123 Posted August 14, 2009 Author Share Posted August 14, 2009 thanks TeNDoLLA it dont seem to work for me, as im new to all this its prob me not understanding right, is this were i should put it <?php session_start(); if( $_SESSION['6_letters_code'] == $_POST['6_letters_code'] && !empty($_SESSION['6_letters_code'] ) ) { $to = "[email protected]"; $email_subject = "This is the email subject"; $name = $_POST['name']; $email = $_POST['email']; $number = $_POST['number']; $message = $_POST['message']; $email_body = "Name " . $name . " . Email Address " . $email . " . Phone Number " . $number . ". Message: " . $message; mail($to, $email_subject, $email_body); if (code_is_right) { header('Location: http://www.anglianpat.com/test/thankyou.html'); } else { header('Location: http://www.anglianpat.com/test/wrongcode.html'); } thanks lee Quote Link to comment https://forums.phpfreaks.com/topic/170065-php-redirect/#findComment-897920 Share on other sites More sharing options...
lee123 Posted August 15, 2009 Author Share Posted August 15, 2009 can anyone else help me please. lee Quote Link to comment https://forums.phpfreaks.com/topic/170065-php-redirect/#findComment-898766 Share on other sites More sharing options...
DarkendSoul Posted August 15, 2009 Share Posted August 15, 2009 He didn't litterly mean code_is_right. He meant a variable that distinguishes the code from being right or wrong by returning true or false. I'd suggest trying to figure out that on your own since its such a fundamental aspect of coding. Quote Link to comment https://forums.phpfreaks.com/topic/170065-php-redirect/#findComment-898774 Share on other sites More sharing options...
Karlos2394 Posted August 15, 2009 Share Posted August 15, 2009 <?php session_start(); if ($_SESSION['6_letters_code'] == $_POST['6_letters_code'] && !empty($_SESSION['6_letters_code'])) { $to = "[email protected]"; $email_subject = "This is the email subject"; $name = $_POST['name']; $email = $_POST['email']; $number = $_POST['number']; $message = $_POST['message']; $email_body = "Name " . $name . " . Email Address " . $email . " . Phone Number " . $number . ". Message: " . $message; mail($to, $email_subject, $email_body); die(header('Location: http://www.anglianpat.com/test/thankyou.html')); } else { die(header('Location: http://www.anglianpat.com/test/wrongcode.html')); } ?> Quote Link to comment https://forums.phpfreaks.com/topic/170065-php-redirect/#findComment-898777 Share on other sites More sharing options...
lee123 Posted August 15, 2009 Author Share Posted August 15, 2009 think i got it, it seem to work but is it right? ob_start(); echo header("Location: http://www.anglianpat.com/test/thankyou.html"); } else { ob_start(); echo header("Location: http://www.anglianpat.com/test/wrongcode.html"); } ?> lee Quote Link to comment https://forums.phpfreaks.com/topic/170065-php-redirect/#findComment-898977 Share on other sites More sharing options...
steve.davis Posted August 15, 2009 Share Posted August 15, 2009 What about this snippet? echo "<b>Thank you! Your message is successfully emailed."; echo "<meta http-equiv=Refresh content=2;url=http://www.anglianpat.com/test/thankyou.html>"; echo "<b>SORRY YOU HAVE PROVIDED AN IMVALID CODE!!"; echo "<meta http-equiv=Refresh content=2;url=http://www.wrongcode.com>"; Quote Link to comment https://forums.phpfreaks.com/topic/170065-php-redirect/#findComment-898980 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.