Home › Forums › Back End › Problem with PHP form › Re: Problem with PHP form
April 30, 2011 at 9:51 am
#48522
Member

Drop us a line
$speech = "";
if(isset($_POST)) {
if ( $_POST == "" || $_POST == "" || $_POST =="" || $_POST =="" ) {
$speech = "You've Left Something Blank.
";
} else {
$body = $_POST . 'n' .
$_POST . 'n' .
$_POST . 'nn' .
$_POST;
mail('[email protected]', "you've got mail!", $body);
//////Either have Speech Variable = to text so...
$speech = "Message Has been Sent!
";
header('Location: http://coadin-internet.com');
}
}
?>