Thread: Quick PHP Help
View Single Post
02-05-2005, 03:42 AM
#8
Michael is offline Michael
Michael's Avatar
Status: Senior Member
Join date: Dec 2004
Location:
Expertise:
Software:
 
Posts: 845
iTrader: 0 / 0%
 

Michael is on a distinguished road

  Old

invano.com then look at the php sniplets in the php tutorial. It'll help a lot.

PHP Code:
<?
echo("Thank you message goes here");
mail("you@yourdomain.com""Subject goes here, " ,
$message,
"From: $email\r\nReply-To: $email\r\n");
?>
wanted something like that right?