High Camp Posted June 19, 2006 Share Posted June 19, 2006 Hi ThereThanks for taking the time to answer my post. I have spent hours working on this and searching all sorts of forums for the answer with no luck.I have built a Flash email contact form that sends the contact on to my email. Here is the PHP code I am using:[code]<?php$name = $_Post["namesubmit"];$email = $_POST["emailsubmit"];$phone = $_Post["phonesubmit"];$address = $_Post["addresssubmit"];$iam = $_Post["iamsubmit"];$ihave = $_Post["ihavesubmit"];$text = $_Post["textsubmit"];$to = "XXX@highcamp.ca"; $subject = "Online Email Form";$headers = "From: $email";$message = "Name: $name\nEmail: $email\nPhone: $phone\nAddress: $address\nI am a: $iam\nI have a: $ihave\nMessage: $text";mail($to, $subject, $message, $headers); ?>[/code]And here is the email I get:To: XXX@highcamp.caFrom XXX@yahoo.ca (The email I entered in the Flash form)Subject: Online Email FormMessage Body:Name: Email: XXX@yahoo.caPhone: Address: I am a: I have a: Message: From this I know that Flash is talking to PHP correctly. I have changed the $email variable to other things and it still works I.E. $email = $_Post["namesubmit"]; and this returns from Bob or whatever name I enter in the name field. I'm not really sure what is going wrong here. I am wondering if maybe it is something in the server setup? Thanks again for taking the time and hopefully this isn't something too simple that will make me look like at idiot.High CampP.S. if you want to see the Flash form it is at www.highcamp.ca/en/emailform.html Quote Link to comment https://forums.phpfreaks.com/topic/12426-mail-not-sending-all-variables/ Share on other sites More sharing options...
poirot Posted June 20, 2006 Share Posted June 20, 2006 Change all $_Post to $_POST; PHP should be case sensitive [although it is not, here]. Quote Link to comment https://forums.phpfreaks.com/topic/12426-mail-not-sending-all-variables/#findComment-47497 Share on other sites More sharing options...
High Camp Posted June 20, 2006 Author Share Posted June 20, 2006 Thank you soooo much. I Knew it was somehting embarassing that would make me look like an idiot.If you want to hear excuses its because my monitor has horrible glare on it and I couldn't read it.Thank you so much.High Camp Quote Link to comment https://forums.phpfreaks.com/topic/12426-mail-not-sending-all-variables/#findComment-47502 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.