PHP code for redirecting page back to homepage

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • snclenney
    Corporal

    • Aug 2005
    • 14

    #1

    PHP code for redirecting page back to homepage

    Hello,

    I'll try to keep this short but sweet. I have a form on my website for users to submit their link on my links page. It is working properply. After they submit the form a Thank You page comes up. That is also working properly. Here's what I need now. I want the Thank You page to redirect back to my Homepage. How do I add this action?

    Thank you,

    Staci
  • Pablo
    Moderator

    • May 2005
    • 507

    #2
    The PHP code for redirecting is
    <?PHP
    header("Location: http://www.pinkvoda.com");
    exit;
    ?>
    Forum Moderator
    BlueVoda Spe******t

    Comment

    • snclenney
      Corporal

      • Aug 2005
      • 14

      #3
      code for redirecting

      Pablo,

      Thank you for the quick response, and is that really what you look like?

      -Staci

      Comment

      Working...
      X