go to next page!

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • vinnie

    go to next page!

    how do i tell PHP that once the user has clicked the submit button,
    the web browser must take him to a specific site?

    for example: www.xxxyyy.com --once submitted the form, take the
    customer to www.kkk.org

    Thank

  • Erwin Moller

    #2
    Re: go to next page!

    vinnie wrote:
    how do i tell PHP that once the user has clicked the submit button,
    the web browser must take him to a specific site?
    >
    for example: www.xxxyyy.com --once submitted the form, take the
    customer to www.kkk.org
    >
    Thank
    Hi,

    <?php
    // do your formprocessing here, when finished:
    header ("Location: http://www.kkk.org");
    exit;
    ?>

    Regards,
    Erwin Moller

    Comment

    • vinnie

      #3
      Re: go to next page!

      On Jun 6, 11:47 am, Erwin Moller
      <since_humans_r ead_this_I_am_s pammed_too_m... @spamyourself.c omwrote:
      vinnie wrote:
      how do i tell PHP that once the user has clicked the submit button,
      the web browser must take him to a specific site?
      >
      for example:www.xxx yyy.com--once submitted the form, take the
      customer towww.kkk.org
      >
      Thank
      >
      Hi,
      >
      <?php
      // do your formprocessing here, when finished:
      header ("Location:http ://www.kkk.org");
      exit;
      ?>
      >
      Regards,
      Erwin Moller
      Thanks Erwin :)

      Comment

      Working...