joseph Posted July 12, 2006 Share Posted July 12, 2006 This codes below is a portion of what I've pasted from my feedback.php . I already have the $headers declared above,it means that I can't use another header function below.. so what should I do to redirect to another page after the feedback form is sent? php:[code=php:0]$headers = "From: $FirstName $LastName \r\n";$headers .= "Reply-To: $Email";if (mail($recipient,$subject,$message,$headers)) { headers ("Location: http://www.name.html");} else { echo "<p>I'm sorry $Title $FirstName $LastName, Mail NOT sent this time.</p>"; } [/code]:) could you give me an example? I can't seem to make it work redirect it after mail has been sent. It has to redirect to another html page saying that the mail has been sent. Quote Link to comment https://forums.phpfreaks.com/topic/14347-feedback-form-how-to-redirect-to-another-html-page/ Share on other sites More sharing options...
Chevy Posted July 12, 2006 Share Posted July 12, 2006 [code]header ("Location: http://www.name.html");[/code]Not headers Quote Link to comment https://forums.phpfreaks.com/topic/14347-feedback-form-how-to-redirect-to-another-html-page/#findComment-56556 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.