以php格式保留链接

时间:2011-02-09 16:01:31

标签: php forms

我创建了一个发送两封电子邮件的表单: 对我来说 2.向用户发送确认电子邮件,其中包含指向其他信息的链接

<?php
$to ='email@email.com';
$subject ="This is My Subject";
$header="From: $firstName $lastName <$email>";
$message = "Name: $firstName $lastName \n\nPhone: $phone \n\nEmail: $email";
$send_contact=mail($to,$subject,$message,$header);

if ( $send_contact ) {
echo "Super fun message";
}
else {
echo "ERROR";
}

$to1 = $email;
$subject1 ="This is my email Subject";
$header1="From: email@email.com <email@email.com>";
$message1 = "Thanks check out this <a href="http://link.com" title="">link</a>.";
$send_contact1=mail($to1,$subject1,$message1,$header1);

&GT;

问题,我认为,$ message1中链接的语法不正确......我无法正确理解。

感谢您的帮助!

2 个答案:

答案 0 :(得分:1)

这是因为链接之前的引号与$ message1上的引号匹配,将它们更改为单引号,你应该没问题。

$message1 = "Thanks check out this <a href='www.link.com' title=''>link</a>."

答案 1 :(得分:0)

您正在混淆引号,因此会混淆解释器并导致错误。在这种情况下使用的正确方法是首先“”(双引号)然后“”(单引号)。

上面的例子很好。你可以参考一下。