Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Simple Contact Plugin
#19
i add 2 fields and form don't work:
Code:
// PHP mail function
function sc_mail () {
    global $successmsg;
    global $sc_captcha;
    global $sc_to;
    $error = 0;
    if( isset($_POST['sc_submitted']) ) {
        $sc_email = $_POST['sc_email'];
        if(!eregi("^[a-z0-9]+([_\\.-][a-z0-9]+)*" ."@"."([a-z0-9]+([\.-][a-z0-9]+)*)+"."\\.[a-z]{2,}"."$",$sc_email )){
            $successmsg = "<div style=\"color:red; text-align:center;\">Adresse E-mail incorrecte.</div>";
            $error = 1;
        }
        if ( empty($_POST['sc_name']) || empty($_POST['sc_email']) || empty($_POST['sc_website']) || empty($_POST['sc_budget']) || empty($_POST['sc_subject']) || empty($_POST['sc_message'])) {
            $successmsg = "<div style=\"color:red; text-align:center;\">Remplissez tout les champs.</div>";
            $error = 1;
        }
        if ($_POST['sc_captcha'] != $sc_captcha) {
            $successmsg = "<div style=\"color:red; text-align:center;\">La r&eacute;ponse anti-spam est incorrecte.</div>";
            $error = 1;            
        }
        if ($error != 1){
            $from = "De: " .$_POST['sc_email'];
            $message = "Nom: ".$_POST['sc_name'];
            $message = $message."\n". "E-mail: ".$_POST['sc_email'];
            $message = "SiteWeb: ".$_POST['sc_website'];
            $message = "Budget du projet: ".$_POST['sc_budget'];
            $message = $message."\n". "Message: ".$_POST['sc_message'];
            mail($sc_to, $_POST['sc_subject'], $message, $from);
            $successmsg = "<div style=\"color:red; text-align:center;\">Merci...Votre message a r&eacute;tr&eacute; envoyr&eacute; avec succr&egrave;s.</div>";
            //Clear values
            $_POST = array();
        }
    } else {
        $successmsg = "<div style=\"color:red; text-align:center;\">TOTO ???????</div>";
    }
}

// Form Display
function sc_form () {
    global $successmsg;
    global $sc_captcha_question;
    print '<div id="contact"><h2>Demande de Devis</h2>';
    print $successmsg;
    print '<form action="#contact" method="post" accept-charset="utf-8" enctype="multipart/form-data">
        <div class="row">
            <div class="column w2">
                <p>
                    <label for="sc_name">Nom &amp; Pr&eacute;nom *</label> <input id="sc_name" name="sc_name" type="text" value="" /></p>
                <p>
                    <label for="sc_email">Votre E-mail *</label> <input id="sc_email" name="sc_email" type="text" value="" /></p>
                <p>
                    <label for="sc_subject">Object </label> <input id="sc_subject" name="sc_subject" type="text" value="" /></p>                    
            </div>
            <div class="column w2">
                <p>
                    <label for="sc_website">Votre SiteWeb</label> <input id="sc_website" name="sc_website" type="text" value="" /></p>
                <p>
                    <label for="sc_budget">Votre budget</label> <input id="sc_budget" name="sc_budget" type="text" value="" /></p>
                <p>
                    <label for="sc_captcha">Question Anti-Spam *:</label><em style="color:green;"> '.$sc_captcha_question.'</em> <input id="sc_captcha" name="sc_captcha" type="text" value="" /></p>                    
            </div>
        </div>
        <div class="row">
            <p>
                <label for="sc_message">Votre Projet *</label><textarea cols="40" id="sc_message" name="sc_message" rows="8"></textarea></p>
                <button type="submit" id="contact-submit" name="contact-submit">Envoyer ma demande</button></div>
    <input type="hidden" value="true" name="sc_submitted" />
    </form>
    </div>';
}

Any idea please ?
Sorry for my little english :rolleyes:

Thx for GS
Reply


Messages In This Thread
Simple Contact Plugin - by internet54 - 2010-03-05, 15:10:47
Simple Contact Plugin - by ccagle8 - 2010-03-05, 21:30:59
Simple Contact Plugin - by bnowell - 2010-03-06, 00:37:46
Simple Contact Plugin - by internet54 - 2010-03-06, 01:14:11
Simple Contact Plugin - by bnowell - 2010-03-06, 02:21:06
Simple Contact Plugin - by internet54 - 2010-03-06, 02:34:36
Simple Contact Plugin - by Zegnåt - 2010-03-06, 03:40:10
Simple Contact Plugin - by matt - 2010-03-06, 04:48:05
Simple Contact Plugin - by Zegnåt - 2010-03-06, 07:12:28
Simple Contact Plugin - by internet54 - 2010-03-06, 08:50:02
Simple Contact Plugin - by matt - 2010-03-06, 10:07:35
Simple Contact Plugin - by internet54 - 2010-03-10, 06:11:38
Simple Contact Plugin - by spilarix - 2010-03-23, 08:53:09
Simple Contact Plugin - by internet54 - 2010-03-23, 11:08:04
Simple Contact Plugin - by Zegnåt - 2010-03-23, 16:33:26
Simple Contact Plugin - by spilarix - 2010-03-24, 01:21:17
Simple Contact Plugin - by kotos - 2010-04-01, 21:52:59
Simple Contact Plugin - by spilarix - 2010-04-02, 19:07:58
Simple Contact Plugin - by mouffin - 2010-04-04, 01:36:09
Simple Contact Plugin - by Oleg06 - 2010-04-04, 05:25:31
Simple Contact Plugin - by Oleg06 - 2010-04-06, 19:52:27
Simple Contact Plugin - by spilarix - 2010-04-07, 00:22:19
Simple Contact Plugin - by Oleg06 - 2010-04-07, 03:31:04
Simple Contact Plugin - by internet54 - 2010-04-07, 08:08:01
Simple Contact Plugin - by Oleg06 - 2010-04-11, 00:59:53
Simple Contact Plugin - by banter - 2010-04-12, 07:00:09
Simple Contact Plugin - by El-Cherubin - 2010-05-17, 05:25:53
Simple Contact Plugin - by morgenmuffel - 2010-05-17, 10:28:02
Simple Contact Plugin - by an8dres26h - 2010-05-18, 04:46:13
Simple Contact Plugin - by morgenmuffel - 2010-05-18, 07:06:26
Simple Contact Plugin - by Oleg06 - 2010-05-18, 16:13:52
Simple Contact Plugin - by an8dres26h - 2010-05-19, 01:14:12
Simple Contact Plugin - by morgenmuffel - 2010-05-19, 07:41:23
Simple Contact Plugin - by morgenmuffel - 2010-05-19, 08:46:10
Simple Contact Plugin - by NickC - 2010-05-20, 20:06:54
Simple Contact Plugin - by an8dres26h - 2010-05-21, 02:34:15
Simple Contact Plugin - by samrayner - 2010-05-22, 21:07:35
Simple Contact Plugin - by Oleg06 - 2010-05-22, 23:45:58
Simple Contact Plugin - by morgenmuffel - 2010-05-23, 08:38:12
Simple Contact Plugin - by Oleg06 - 2010-05-23, 16:22:13
Simple Contact Plugin - by cscott - 2010-06-17, 06:05:17
Simple Contact Plugin - by folieplus - 2010-07-07, 20:25:08
Simple Contact Plugin - by yojoe - 2010-07-08, 03:44:37
Simple Contact Plugin - by folieplus - 2010-07-08, 19:31:33
Simple Contact Plugin - by suprchic66 - 2010-07-09, 06:32:20
Simple Contact Plugin - by morgenmuffel - 2010-07-17, 10:30:35
Simple Contact Plugin - by Zegnåt - 2010-07-17, 20:06:32
Simple Contact Plugin - by morgenmuffel - 2010-07-20, 14:36:14
Simple Contact Plugin - by core - 2010-07-22, 00:26:25
Simple Contact Plugin - by simple123 - 2010-07-29, 04:33:28
Simple Contact Plugin - by NeBox - 2010-08-06, 23:35:36
Simple Contact Plugin - by martonos - 2010-08-07, 02:31:57
Simple Contact Plugin - by morgenmuffel - 2010-08-07, 09:57:27
Simple Contact Plugin - by internet54 - 2010-08-19, 13:19:34
Simple Contact Plugin - by vsky - 2010-08-19, 15:03:21
Simple Contact Plugin - by fotothink - 2010-08-19, 20:46:53
Simple Contact Plugin - by internet54 - 2010-08-19, 23:08:19
Simple Contact Plugin - by morgenmuffel - 2010-08-20, 07:18:25
Simple Contact Plugin - by fotothink - 2010-08-20, 18:34:56
Simple Contact Plugin - by vsky - 2010-08-20, 20:33:32
Simple Contact Plugin - by fotothink - 2010-08-20, 21:09:38
Simple Contact Plugin - by vsky - 2010-08-20, 21:19:45
Simple Contact Plugin - by fotothink - 2010-08-21, 01:20:17
Simple Contact Plugin - by vsky - 2010-08-21, 05:01:29
Simple Contact Plugin - by fotothink - 2010-08-21, 15:26:25
Simple Contact Plugin - by Rene - 2010-08-25, 17:19:12
Simple Contact Plugin - by 9dogs - 2010-09-04, 09:24:25
Simple Contact Plugin - by tankmiche - 2010-09-12, 20:13:12
Simple Contact Plugin - by rozmiar - 2010-09-15, 23:35:27
Simple Contact Plugin - by vsky - 2010-09-16, 09:25:19
Simple Contact Plugin - by rozmiar - 2010-09-24, 19:50:14
Simple Contact Plugin - by mikesalami - 2011-04-08, 09:49:36



Users browsing this thread: 1 Guest(s)