treehouse : what would you like to learn today?
Web Design Web Development iOS Development

[Solved] Redirect After Form Submisson ??

  • I tried the tutorial written by Chris : Sending Nice HTML Email with PHP

    now I got problem with redirecting to other page after form is submitted, I already tried several methods found around the internet, but wasn't work for me... :)

    here my form: http://www.fleedy.com/bgmail

    Please Guide me how to make redirection..

    TQ in Advance..
  • Just posting the form link unfortunately doesn't show the code you are using...

    Redirects in PHP are usually done using the header function: http://us2.php.net/manual/en/function.header.php

    an example:
    <?php
    header('Location: http://www.example.com/');
    ?>
  • (moved to PHP Section)

    Falken is correct, the header function is what you're looking for. A lot of people have it set up like this:

    if form fails {
    header(fail-page)
    }

    else {
    header(success-page)
    }
  • TQ for your kind responses....

    I fixed the errors after referring: [http://css-tricks.com/forums/viewtopic.php?f=6&p=14544] + some other factors.

    the header function already tried, but not in the right place... that's why i failed..

    after submitted, form will be call [websitechange.js] which is external js file that contain thank you message.
    I just modified the js file. [Problem Solved].

    TQ for helping.... :)