Hey, i am getting an error passed back for this line of code, the rest of the code is
below:
echo "<P align=center>Your feedback has been sent to <a
href="mailto:$address">$name</a></P>";
the error is:
Parse error: parse error, expecting `','' or `';'' in
/www/customers/stevewrightonline.co.uk/form/do_sendform.php on line 20
Does anyone know y this is?? If i remove the a href tags it works fine. Can you not
use links properly in PHP??
------------------
<?php
$name = "Steven Wright";
$address ="[EMAIL PROTECTED]";
$recipient = $address;
$subject = "Auto Form";
$mailheaders = "From: Auto Form < $address > \n";
$mailheaders = "Reply-To: $sender_email\n\n";
/*The Message*/
$msg = "Sender:\t mailto:$sender_email \t $sender_name\n\n";
$msg = "Message:\t$message\n\n";
/*Mail to Me*/
mail($recipient, $subject, $msg, $mailheaders);
/*Onscreen confirmation of sending*/
echo "<HTML><HEAD><TITLE>Form Sent!</TITLE></HEAD><BODY>";
echo "<H1 align=center>Thank You, $sender_name</H1>";
echo "<P align=center>Your feedback has been sent to <a
href="mailto:$address">$name</a></P>";
echo "</BODY></HTML>";
?>