Lessur Posted July 22, 2007 Share Posted July 22, 2007 I have this code: <?php if(isset($_POST['submit'])) { $to = "Email here, blah"; $subject = "ALBUM REQUEST"; $name = $_POST['name']; $email = $_POST['email']; $add = $_POST['add']; $city = $_POST['city']; $state = $_POST['state']; $zip = $_POST['zip']; $tel = $_POST['tel']; $body = "From: $name\n E-Mail: $email\n Address: $add\n City: $city\n State: $state\n Zip: $zip\n Tel: $tel"; mail($to, $subject, $body); echo "Thanks! Data sent to $to"; } else { echo "blarg!"; } ?> and of course I have a form for this on another page, but for some reason, even when i get the confirmation text, it just doesn't send. Why? Quote Link to comment Share on other sites More sharing options...
Lessur Posted July 22, 2007 Author Share Posted July 22, 2007 is it the servers problem? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.