PHP script
<?
$email = $_POST['email'];
# what about some validation here?
# You'll get spammed with a form like that...
mail( 'djm@hotmail.com', 'Feedback Form Results',
$_POST['message'], 'From: '.$email);
?>
It's like the server cannot detect your php script at all.
Maybe the...