I want to redirect from mail.php to thanks.html

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Sajad Bhat
    New Member
    • Apr 2011
    • 8

    I want to redirect from mail.php to thanks.html

    i have a form in an HTMl page (Method=post action=mail.php ). when the user hit the submit button he goes to mail.php where i process some input fields first and may echo a string if the user leaves an input fields blank and at the end i want to redirect to thanks.html.

    Is there any way to validate the fields & email in the same file like mail.php and then redirect to thanks.html.

    Thanks
    Sajad Bhat
  • Dormilich
    Recognized Expert Expert
    • Aug 2008
    • 8694

    #2
    if mail.php didn’t create any output so far, just include thanks.html.

    Comment

    • Stephan Needank
      New Member
      • Apr 2011
      • 10

      #3
      header('refresh : 5; URL=thanks.html '); // This redirects the page to thanks.html after 5 seconds.

      Or you could use

      header('locatio n: thanks.html'); // This immediately redirects to thanks.html

      Comment

      Working...