Anonymous - 2010-06-02

Sorry about that I typed "now" rather than "no" in the last topic.

Anyway…

I'm not receiving an email from my form… any ideas?
http://www.pfm-ltd.com/form.html

The file is processor.php
<?php

$where_form_is="http://".$_SERVER.strrev(strstr(strrev($_SERVER),"/"));

session_start();
if( ($_SESSION==$_POST) && (!empty($_POST)) ) {
mail("peter.kirkwood@btinternet.com","phpFormGenerator - Form submission","Form data:

Name: " . $_POST . "
Email: " . $_POST . "
Tel: " . $_POST . "
Message: " . $_POST . "

powered by phpFormGenerator.
");

include("confirm.html");
}
else {
echo "Invalid Captcha String.";
}

?>