|
| |
What Are The "Best Of" My Blogs?
|
Last Blog |
Index |
Next Blog
5 May 2014
|
Greetings dear readers, today I have a favor to ask of you. I'd like to compile a "Best Of" list of my blogs but I'm not sure I
trust my opinion about what's best. So please take a moment or two and vote on your favorites from the past few years (I'm not
including the older stuph because the long format doen't really lend itself to a "Best Of" list). So pick your top 10, top 5 or
whatever and then click submit!
Thanks!
Bradley
|
if (isset($_POST["bestof"]) || isset($_POST["other"])) {
$to = "bradleywogsland+survery20140505@gmail.com";
$from = "survey@wogsland.org"; // sender
$subject = "Best Of Survey 20140505";
$message = implode("\r\n",$_POST);
//$message = "test message, dude";
// message lines should not exceed 70 characters (PHP rule), so wrap it
$message = wordwrap($message, 70);
// send mail
mail($to,$subject,$message,"From: $from\n");
echo "Thanks for the feedback!";
}
?>
|