Jump to content

Forms not working on Streamline.net


superstars121

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.