Escape the double quotes inside the <a href>

echo "<P align=center>Your feedback has been sent to <a
href=\"mailto:$address\";>$name</a></P>";


--

  Julio Nobrega.

2B||!BB - That's the question.

"Steve Wright" <[EMAIL PROTECTED]> wrote in message
02c401c119db$b76a1700$0615fea9@COM">news:02c401c119db$b76a1700$0615fea9@COM...
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>";
?>





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to