Here is the code for it. I used it on a previous website but it is now not working on the current website I have made. Could someone look at the code and get back to me please?
Basically, I am totally new to this and I can't even configure it to post on here!
If anyone is willing to help me, please email me back so I can send you the code!
Code ( http://pastebin.com/n0CegqyP):
<?php
function checkemail($email)
{
$isValid = true;
$atIndex = strrpos($email, "@");
if (is_bool($atIndex) && !$atIndex) {
$isValid = false;
} else {
$domain = substr($email, $atIndex+1);
$local = substr($email, 0, $atIndex);
$localLen = strlen($local);
$domainLen = strlen($domain);
if ($localLen < 1 || $localLen > 64) {
$isValid = false;
} else if ($domainLen < 1 || $domainLen > 255) {
$isValid = false;
} else if ($local[0] == '.' || $local[$localLen-1] == '.') {
$isValid = false;
} else if (preg_match('/\\.\\./', $local)) {
$isValid = false;
} else if (!preg_match('/^[A-Za-z0-9\\-\\.]+$/', $domain)) {
$isValid = false;
} else if (preg_match('/\\.\\./', $domain)) {
$isValid = false;
} else if (!preg_match('/^(\\\\.|[A-Za-z0-9!#%&`_=\\/$\'*+?^{}|~.-])+$/', str_replace("\\\\","",$local))) {
if (!preg_match('/^"(\\\\"|[^"])+"$/', str_replace("\\\\","",$local))) {
$isValid = false;
}
}
if ($isValid && !(checkdnsrr($domain,"MX") || checkdnsrr($domain,"A"))) {
$isValid = false;
}
}
return $isValid;
}
function checkUKTelephone (&$strTelephoneNumber, &$intError, &$strError) {
$strTelephoneNumberCopy = str_replace (' ', '', $strTelephoneNumber);
if (empty($strTelephoneNumberCopy)) {
$intError = 1;
$strError = 'Telephone number not provided';
return false;
}
if (ereg('^(\+)[\s]*(.*)$',$strTelephoneNumberCopy)) {
$intError = 2;
$strError = 'UK telephone number without the country code, please';
return false;
}
$strTelephoneNumberCopy = str_replace ('-', '', $strTelephoneNumberCopy);
if (!ereg('^[0-9]{10,11}$',$strTelephoneNumberCopy)) {
$intError = 3;
$strError = 'UK telephone numbers should contain 11 digits';
return false;
}
if (!ereg('^0[0-9]{9,10}$',$strTelephoneNumberCopy)) {
$intError = 4;
$strError = 'The telephone number should start with a 0';
return false;
}
$tnexp[0] = '^(0113|0114|0115|0116|0117|0118|0121|0131|0141|0151|0161)(4960)[0-9]{3}$';
$tnexp[1] = '^02079460[0-9]{3}$';
$tnexp[2] = '^01914980[0-9]{3}$';
$tnexp[3] = '^02890180[0-9]{3}$';
$tnexp[4] = '^02920180[0-9]{3}$';
$tnexp[5] = '^01632960[0-9]{3}$';
$tnexp[6] = '^07700900[0-9]{3}$';
$tnexp[7] = '^08081570[0-9]{3}$';
$tnexp[8] = '^09098790[0-9]{3}$';
$tnexp[9] = '^03069990[0-9]{3}$';
foreach ($tnexp as $regexp) {
if (ereg($regexp,$strTelephoneNumberCopy, $matches)) {
$intError = 5;
$strError = 'The telephone number is either invalid or inappropriate';
return false;
}
}
if (!ereg('^(01|02|03|05|070|071|072|073|074|075|07624|077|078|079)[0-9]+$',$strTelephoneNumberCopy)) {
$intError = 5;
$strError = 'The telephone number is either invalid or inappropriate';
return false;
}
$strTelephoneNumberCopy = $strTelephoneNumberCopy;
$intError = 0;
$strError = '';
return true;
}
$name = '';
$email = '';
$telephoneno = '';
$package = '';
$extra1 = '';
$extra2 = '';
$extra3 = '';
$event = '';
$comments = '';
$showform = true;
if($_SERVER['REQUEST_METHOD'] == 'POST') {
$name = isset($_POST['name']) ? $_POST['name'] : '';
$email = isset($_POST['email']) ? $_POST['email'] : '';;
$comment = isset($_POST['telephoneno']) ? $_POST['telephoneno'] : '';;
$tel = isset($_POST['package']) ? $_POST['package'] : '';;
$tel = isset($_POST['extra1']) ? $_POST['extra1'] : '';;
$tel = isset($_POST['extra2']) ? $_POST['extra2'] : '';;
$tel = isset($_POST['extra3']) ? $_POST['extra3'] : '';;
$tel = isset($_POST['event']) ? $_POST['event'] : '';;
$tel = isset($_POST['comments']) ? $_POST['comments'] : '';;
$errors = array();
if (!checkUKTelephone($tel, $errorNo, $errorText) ) {
$errors[] = $errorText;
}
if(!checkemail($email)) {
$errors[] = 'Email address has an invalid format';
}
if(count($errors) == 0) {
$message = 'name: '.$name."\n";
$message .= 'email: '.$email."\n";
$message .= 'tel: '.$telephoneno."\n";
$message .= 'package: '.$package."\n";
$message .= 'Karaoke: '.$extra1."\n";
$message .= 'DPP: '.$extra2."\n";
$message .= 'other: '.$extra3."\n";
$message .= 'event: '.$event."\n";
$message .= 'comments: '.$comments."\n";
if(mail('jack.mawhinney@googlemail.com', 'Disco Enquiry', $message)) {
echo '<meta HTTP-EQUIV="REFRESH" content="0; url=thanks.html">
';
} else {
echo 'Something went wrong whilst sending your enquiry, please try again later.';
}
$showform = false;
} else {
echo 'The following errors occured:<br /><br />';
echo implode('<br />', $errors);
$showform = true;
}
}
if($showform == true) {
?>