Fatal Error: Uncaught Error on send

A

Anonymous

Guest
I'm hoping someone can spot where I'm going wrong please. This is the error message when I click on SEND on the contac tform
Fatal error: Uncaught Error: Call to undefined function eregi() in /homepages/12/d229008969/htdocs/testing/contactus.php:104 Stack trace: #0 {main} thrown in /homepages/12/d229008969/htdocs/testing/contactus.php on line 104

This is my PHP -
Code:
                                                             $to = 'bob@paradisimo.co.uk';
									$subject = 'Enquiry from the website';
									$contact_submitted = 'Your message has been sent.';

									function email_is_valid($email) {
									  return preg_match('/^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$/i',$email);
									}

									if (isset($_POST['contact_submitted'])) {
										$return = "\r";
										$youremail = trim(htmlspecialchars($_POST['your_email']));
										$yourname = stripslashes(strip_tags($_POST['your_name']));
										$yourmessage = stripslashes(strip_tags($_POST['your_message']));
										$contact_name = "Name: ".$yourname;
										$message_text = "Message: ".$yourmessage;
										$user_answer = trim(htmlspecialchars($_POST['user_answer']));
										$answer = trim(htmlspecialchars($_POST['answer']));
										$message = $contact_name . $return . $message_text;
										$headers = "From: ".$youremail;
										if (email_is_valid($youremail) && !eregi("\r",$youremail) && !eregi("\n",$youremail) && $yourname != "" && $yourmessage != "" && substr(md5($user_answer),5,10) === $answer) {
										  mail($to,$subject,$message,$headers);
										  $yourname = '';
										  $youremail = '';
										  $yourmessage = '';
										  echo '<p style="color: blue;">'.$contact_submitted.'</p>';
										}
										else echo '<p style="color: red;">Please enter your name, a valid email address, your message and the answer to the simple maths question before sending your message.</p>';
									  }
									  $number_1 = rand(1, 9);
									  $number_2 = rand(1, 9);
									  $answer = substr(md5($number_1+$number_2),5,10);
								?>

and the form within the same php file

Code:
form id="contact" action="contactus.php" method="post">
								  <div class="form_settings">
									<p><span>Name</span><input class="contact" type="text" name="your_name" value="<?php echo $yourname; ?>" /></p>
									<p><span>Email Address</span><input class="contact" type="text" name="your_email" value="<?php echo $youremail; ?>" /></p>
									<p><span>Message</span><textarea class="contact textarea" rows="5" cols="50" name="your_message"><?php echo $yourmessage; ?></textarea></p>
									<p style="line-height: 1.7em;">To help prevent spam, please enter the answer to this question:</p>
									<p><span><?php echo $number_1; ?> + <?php echo $number_2; ?> = ?</span><input type="text" name="user_answer" /><input type="hidden" name="answer" value="<?php echo $answer; ?>" /></p>
									<p style="padding-top: 15px"><span> </span><input class="submit" type="submit" name="contact_submitted" value="send" /></p>
								  </div>
								</form>

Can anyone help please ?
Thanks
 
The number after the filename in your error tells you where to look; on line 104 of contactus.php, you have a call to a function eregi() that isn't defined.
 
Strider64 said:

Hi

I've changed from eregi to preg_match and the fatal error has stopped but now it goes into a perpetual error loop on the if then else :-
if (email_is_valid($youremail) && preg_match("\r",$youremail) && preg_match("\n",$youremail) && $yourname != "" && $yourmessage != "" && substr(md5($user_answer),5,10) === $answer) {
mail($to,$subject,$message,$headers);
$yourname = '';
$youremail = '';
$yourmessage = '';
echo '<p style="color: blue;">'.$contact_submitted.'</p>';
}
else echo '<p style="color: red;">Please enter your name, a valid email address, your message and the answer to the simple maths question before sending your message.</p>';

Any ideas please :help:
 
Sorted. Like a dummy I forgot the ! before the preg_match. It's now working.

Thanks
 
Back
Top