Hi, I am having a similar problem, so I thought I’d ask for any tips here. My contact form doesn’t throw up an error, but nothing happens. We have a simple webpage at www.rapidresults.wang (Don’t laugh, we are just beginners!)
This the php file send_mail.php
[php]#!/usr/bin/php
<?php /* This first bit sets the email address that you want the form to be submitted to. You will need to change this value to a valid email address that you can access. */ $webmaster_email = "[email protected]"; /* This bit sets the URLs of the supporting pages. If you change the names of any of the pages, you will need to change the values here. */ $feedback_page = "send_us_a_message.html"; $error_page = "error_message.html"; $thankyou_page = "thank_you.html"; /* This next bit loads the form field data into variables. If you add a form field, you will need to add it here. */ $email_address = $_REQUEST['email_address'] ; $comments = $_REQUEST['comments'] ; /* The following function checks for email injection. Specifically, it checks for carriage returns - typically used by spammers to inject a CC list. */ function isInjected($str) { $injections = array('(\n+)', '(\r+)', '(\t+)', '(%0A+)', '(%0D+)', '(%08+)', '(%09+)' ); $inject = join('|', $injections); $inject = "/$inject/i"; if(preg_match($inject,$str)) { return true; } else { return false; } } // If the user tries to access this script directly, redirect them to the feedback form, if (!isset($_REQUEST['email_address'])) { header( "Location: $feedback_page" ); } // If the form fields are empty, redirect to the error page. elseif (empty($email_address) || empty($comments)) { header( "Location: $error_page" ); } // If email injection is detected, redirect to the error page. elseif ( isInjected($email_address) ) { header( "Location: $error_page" ); } // If we passed all previous tests, send the email then redirect to the thank you page. else { mail( "$webmaster_email", "Feedback Form Results", $comments, "From: $email_address" ); header( "Location: $thankyou_page" ); } ?>[/php]Lines 21 and 22, these 2 below are causing a problem.
$email_address = $_REQUEST['email_address'] ; $comments = $_REQUEST['comments'] ;
When I view the source file send_mail.php in Firefox I see this:
PHP Notice: Undefined index: email_address in D:\freehost\fa5d40d2\web\send_mail.php on line 21
PHP Notice: Undefined index: comments in D:\freehost\fa5d40d2\web\send_mail.php on line 22
As far as I can see, these variables are in the send_us_a_message.html here: name=“email_address” and name=“comments”
but it is not working. Any tips please??
If you have another, better, more elegant routine to do this, maybe you would be so kind as to share it with me.
Thanks!
This is the relevant part of send_us_a_message.html
You can send us a message here.
Your Email Adress: Comments: Write your message here.