Hey I've modified the script to include a http:// url but it removes the "=" signs. I can't seem to figure out how to keep it from removing them.
Here's the code I've added:
PHP Code:
if (!empty($year) && !empty($bar)) {
$foolink = "$year Bar #$bar: http://foobar.com/foo.php?y=$year&b=$bar <br />\n";
}
PHP Code:
if (!empty($foolink)) {
$message .= $foolink;
}
$message.=clean_msg(nl2br(strip_tags($yourmessage)));
What it'll put in the e-mail is:
http://foobar.com/foo.php?y 2010&b1
I've also been having issues with spam messages being sent from the form.
Any help for that as well?