Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Problem with PHP form Re: Problem with PHP form

#48522
Waffle
Member








































Contact Options










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');
}
}

?>