kkrimmer Posted December 3, 2012 Share Posted December 3, 2012 Not sure if this question should be in HTML or PHP. In 2005 I had someone make a form on my website that is emailed to me. Problem is that the hosting company is upgrading to PHP 5.4 and this form does not work with 5.4 Any assistance in correcting this to comply with 5.4 is greatly appreciated. Again, the form works fine with PHP 4. This is the HTML: <form id="signup" action="mail.php" method="post" onsubmit="return validate_form ( );"> Here is the mail.php that the html form uses: ---- ----- ---- ----- ---- ----- ---- ----- ---- ----- ---- ----- <? if (empty($email)) exit(); $to = '[email protected]'; $subject = 'Form Request'; $message = 'State: ' . $_REQUEST['State'] . "\n Name " . $_REQUEST['nameself'] . "\n " . "\n Spouse " . $_REQUEST['namespouse'] . "\n " . "\n Phone-- " . $_REQUEST['phone'] . "\n " . "\n Email " . $_REQUEST['email'] . "\n\n " . $email = $_REQUEST['email']; $headers = 'From: ' . $email . "\r\n" . 'Reply-To: ' . $email . "\r\n" . 'X-Mailer: PHP/' . phpversion(); mail ($to, $subject, $message, $headers); header("Location: formresponse.html"); ?> ---- ----- ---- ----- ---- ----- ---- ----- ---- ----- ---- ----- Link to comment https://forums.phpfreaks.com/topic/271549-html-form-wont-work-with-54/ Share on other sites More sharing options...
MDCode Posted December 3, 2012 Share Posted December 3, 2012 Perhaps they changed settings, change your opening <? tag to <?php Link to comment https://forums.phpfreaks.com/topic/271549-html-form-wont-work-with-54/#findComment-1397259 Share on other sites More sharing options...
Pikachu2000 Posted December 3, 2012 Share Posted December 3, 2012 It relies on a setting in php that should be turned off, and remain off. You need to explicitly assign the value from the form to $email in your if( empty($email) ) { conditional, or use the form value directly in it. Link to comment https://forums.phpfreaks.com/topic/271549-html-form-wont-work-with-54/#findComment-1397264 Share on other sites More sharing options...
kkrimmer Posted December 3, 2012 Author Share Posted December 3, 2012 Thank you Pikachu2000 ... removing those lines works... Link to comment https://forums.phpfreaks.com/topic/271549-html-form-wont-work-with-54/#findComment-1397272 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.