Jump to content

Simple php form question - How to redirect to page after submit?


emerson5000

Recommended Posts

Using the php form script below, I'd like the script to return the user to the original form page after they submit the form. 

 

Thx,

Emerson

_________________________________

<?

$subject="from ".$_GET['name'];

$headers= "From: ".$_GET['email'];

$headers.=$_GET['phone']. "\n";

$headers.='Content-type: text/html; charset=iso-8859-1';

mail("[email protected]", $subject,  "

 

  " ."Name: " .$_GET['name']."

 

  " ."Phone: " .$_GET['phone']."

 

  " ."Email: " .$_GET['email']."

 

  " ."Message: " .$_GET['message']."

 

</body>

</html>" , $headers);

echo ("Your message was sent!");

 

?>

<script>

___________________________

You would need to use header('Location: http://www.example.com/');, do you want the redirect after the "Your Message Was Sent" text was seen or do you want to just redirect straight to a page?

 

Superfast responses!  Thanks to all!

 

tomtimms,

Once a user submits the form, I'd like to redirect them to the index page straight away.

 

I'm still doing something incorrectly. I added line 17 shown below but it doesn't redirect.

 

Emerson

 

________________________________

<?

$subject="from ".$_GET['name'];

$headers= "From: ".$_GET['email'];

$headers.=$_GET['phone']. "\n";

$headers.='Content-type: text/html; charset=iso-8859-1';

mail("[email protected]", $subject,  "

 

  " ."Name: " .$_GET['name']."

 

  " ."Phone: " .$_GET['phone']."

 

  " ."Email: " .$_GET['email']."

 

  " ."Message: " .$_GET['message']."

 

header('location: http://www.company.com/index.html');

 

</body>

</html>" , $headers);

echo ("Your message was sent!");

 

?>

<script>

___________________________________

Looks like you're putting the redirect inside you email message.  Put it in place of the "Your messages was sent" line.

<?
$subject="from ".$_GET['name'];
$headers= "From: ".$_GET['email'];
$headers.=$_GET['phone']. "\n";
$headers.='Content-type: text/html; charset=iso-8859-1';
mail("[email protected]", $subject,  "

  " ."Name: " .$_GET['name']."

  " ."Phone: " .$_GET['phone']."

  " ."Email: " .$_GET['email']."

  " ."Message: " .$_GET['message']."

</body>
</html>" , $headers);

header("location: http://www.company.com/index.html");

?>

Looks like you're putting the redirect inside you email message.  Put it in place of the "Your messages was sent" line.

<?
$subject="from ".$_GET['name'];
$headers= "From: ".$_GET['email'];
$headers.=$_GET['phone']. "\n";
$headers.='Content-type: text/html; charset=iso-8859-1';
mail("[email protected]", $subject,  "

  " ."Name: " .$_GET['name']."

  " ."Phone: " .$_GET['phone']."

  " ."Email: " .$_GET['email']."

  " ."Message: " .$_GET['message']."

</body>
</html>" , $headers);

header("location: http://www.company.com/index.html");

?>

 

 

Drummin!  Rock-star!  Works perfectly!  Thanks amigo!

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.