superstars121 Posted June 18, 2010 Share Posted June 18, 2010 Unable to get my forms working tried it a million ways and still can only get one are two lines to send so dumping the mess that I have coded and including the original code, new to php so could anyone help me sort it out. Cheers <?php $email = $_REQUEST['email'] ; $message .= " NAME: " . $_REQUEST['name'] ; $message .= " EMAIL: " . $_REQUEST['email'] ; $message .= " PHONE: " . $_REQUEST['phone'] ; $message .= " HOUSE NUMBER: " . $_REQUEST['house_number'] ; $message .= " STREET: " . $_REQUEST['street'] ; $message .= " CITY: " . $_REQUEST['city'] ; $message .= " POST CODE: " . $_REQUEST['postcode'] ; $message .= " DESCRIPTION: " . $_REQUEST['description'] ; mail( "[email protected]", "Silver Booking", $message, "From: $email"); header( "Location: http://www.vumyproperty.com/silver_thankyou.htm" ); ?> Link to comment https://forums.phpfreaks.com/topic/205183-forms-not-working-on-streamlinenet/ Share on other sites More sharing options...
mrMarcus Posted June 18, 2010 Share Posted June 18, 2010 Yup, that's PHP code. So, what's the problem? Pretend like your code is sick, we're all doctors, and you're really, really trying to explain clearly what the symptoms are, okay? Link to comment https://forums.phpfreaks.com/topic/205183-forms-not-working-on-streamlinenet/#findComment-1074018 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.