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) {
?>
link|improve this question
2  
If you ask a question on SO involving code, you post it in your question. Otherwise, we can't help you. – JamWaffles Nov 6 '11 at 21:05
Or, conversely if it's a LOT of code, put it in a pastebin [pastebin.com/] or a gist [gist.github.com/] or the like. In short, posting your code will allow everyone to discuss it openly, which will result in a better answer in the long run. – cori Nov 6 '11 at 21:07
What does "not working" mean more specifically? Are you getting any error messages? – Mike Nov 6 '11 at 21:09
Also, in response to @cori, posting the relevant parts of your code is always a good idea so people don't have to sort through hundreds of lines of code. – Mike Nov 6 '11 at 21:12
2  
@JackPhillipMawhinney please update your question with the link then. We can't guess what the URL is. – Mike Nov 6 '11 at 21:18
show 4 more comments
feedback

closed as not a real question by Quentin, JamWaffles, Oded, Sam Saffron Nov 6 '11 at 23:08

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

maybe a simple line of code could help:

mail('email@domain.com','subject',var_export($_POST, true));
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.