Hi,
Just signed up!
I have a well working contact form in which I have included the name of the sender and the url to his web page in the message body right above his message.
When I use this code:
$message_body .= "<span style='font-size: 12pt;'>URL: " . $_POST["url"] . "</span><br><br>";
The url is sent, but it doesn’t come through as a clickable link. One must select, right click to open in a new window, or copy and paste in a browser window.
When I use this code:
$message_body .= "<span style='font-size: 12pt;'>URL: " . "<a href=" . "/>" . $_POST["url"] . "</a>" . "</span><br><br>";
the url comes through as a nice blue clickable link of the sent url, but it only links to the same page as the message it is sent to, and not the url that is highlighted.
Anybody have any insight? ;D Thanks, Bill