|
I think this is a simple problem. It is driving me nuts! I just need my form to send email to me:
<?
if(isset($_POST)) {
echo "Thank you, ".$_POST["name"].", we will contact you shortly;
mail("myemail@me.com", "Contact form filled out", $_POST["message"]);
}
?>
There is more code on the page also, HTML and stuff, but instead of showing, the whole page is BLANK. What the heck is going on?
|