hello,
i am trying to add a feature in my contact form that create a link with visitors submitted 'TITLE' and 'URL'.
Have a look at this code!
***In this code $attn = Visitors submitted URL and $visitor = Visitors submitted title.
$todayis = date("l, F j, Y, g:i a") ;
$attn = $attn ;
$subject = $attn;
$notes = stripcslashes($notes);
$message = " $todayis [EST] \n
Attention: $attn \n
Message: $notes \n
From: $visitor ($visitormail)\n
Browser Info: $httpagent \n
Referral : $httpref \n
[B]<a href='$attn '>$visitor </a>[/B]
";
here i have added a code like this
<a href='$attn '>$visitor </a>
but its not works!It send data in in my e-mail this way: <a href='http://www.submittedurl.com '> Submitted Title </a> but i wanna get it as a link like: Submitted Title in my email.
So what to do, any help? Thanks.