|
Author |
Message |
badger
Junior WebHelper

Joined: 08 Oct 2004
Posts: 10
|
Posted:
Mon Nov 08, 2004 8:50 pm (20 years, 6 months ago) |
  |
Hello once again!
Im using a modifyed e-mail contact script and need a little help!
Code: | mail($mailto, $subject, $message, "From: \"$user\" <$user>\nReply-To: \"$user\" <$user>\nX-Mailer: badgermail 2004!" );
header( "Location: $thankyou" );
exit ; |
I would like to change the $thankyou variable to include my thanks message as I would like to use other variables posted to the PHP script.
I tryed this but to no avail.
Code: | mail($mailto, $subject, $message, "From: \"$user\" <$user>\nReply-To: \"$user\" <$user>\nX-Mailer: badgermail 2004!" );
header( "<div id="odQtnHeader">badgers!</div>
<br>
<p align="center"><?php print('Thank you '.$user); ?> your message has been sent.</p>
" );
exit ; |
Any anyone help and point out where I am going wrong?
Many Thanks!
badger |
|
|
    |
 |
Daniel
Team Member


Joined: 06 Jan 2002
Posts: 2564
|
Posted:
Tue Nov 09, 2004 4:24 pm (20 years, 6 months ago) |
  |
Use this:
Code: |
<?php
mail($mailto, $subject, $message, "From: \"$user\" <$user>\nReply-To: \"$user\" <$user>\nX-Mailer: badgermail 2004!" );
?>
<div id="odQtnHeader">badgers!</div>
<br>
<p align="center"><?php print('Thank you '.$user); ?> your message has been sent.</p> |
header() is only to be used for headers, as the name indicates, not for HTML. |
________________________________
 |
|
    |
 |
|
|
You cannot post new topics in this forum. You cannot reply to topics in this forum. You cannot edit your posts in this forum. You cannot delete your posts in this forum. You cannot vote in polls in this forum.
|
Page generation time: 0.112784 seconds :: 17 queries executed :: All Times are GMT
Powered by phpBB 2.0
© 2001, 2002 phpBB Group :: Based on an FI Theme
| |