Same thing, blank page and this source:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv="Content-Type"
content="text/html; charset=windows-1252"></HEAD>
<BODY></BODY></HTML>
Here is what the script looks like (with all the personal info changed, of course) with your line added:
======================================
<?php // <--- this should already be there ;-) (It was there 🙂 )
die("Hello, thephilster!");
//leave the rest of your code down here
if(isset($POST['submit']))
{
$to = "myemail@mywebsite.com"; // this is my Email address
$from = $POST['email']; // this is the sender's Email address
$foundus = $POST['foundus'];
$subject = "Request!";
$subject2 = "You got the ball rolling! Get ready!";
$message = "Found us by: " . $foundus . "\n\n" . $POST['message'];
$message2 = "You're on the way!". "\n\n" . $_POST['message'];
$headers = "From:" . $from;
$headers2 = "From:" . $to;
mail($to,$subject,$message,$headers);
mail($from,$subject2,$message2,$headers2); // sends a copy of the message to the sender
header('Location: [url]https://forwardingsite.com');[/url]
}
?>
I was thinking it wasn't even seeing it. GoDaddy says it's because there's an error in the script.
Thanks!