You need to put backslashes before your quotes in your echo statement.  Like
this:

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

HTH

Sam Masiello
Software Quality Assurance Engineer
Synacor
(716) 853-1362 x289
[EMAIL PROTECTED]

 -----Original Message-----
From:   Steve Wright [mailto:[EMAIL PROTECTED]]
Sent:   Tuesday, July 31, 2001 12:13 PM
To:     PHP List
Subject:        [PHP] HELP!! What wrong with this code...

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