Что нового

Прикрутить checkbox

  • Автор темы Автор темы sir95
  • Дата начала Дата начала
S

sir95

Гость
Как сюда прикрутить checkbox, что-то не могу понять.<?phperror_reporting(0);//Если форма отправленаif(isset($_POST['submit'])) {    //Проверка Поля ИМЯ    if(trim($_POST['contactname']1; == '') {        $hasError = true;    } else {        $name = trim($_POST['contactname']);    }    //Проверка поля ТЕМА    if(trim($_POST['subject']) == '') {        $hasError = true;    } else {        $subject = trim($_POST['subject']);    }    //Проверка правильности ввода EMAIL    if(trim($_POST['email']) == '')  {        $hasError = true;    } else if (!eregi("^[A-Z0-9._%-]+@[A-Z0-9._%-]+\\.[A-Z]{2,4}$", trim($_POST['email']))) {        $hasError = true;    } else {        $email = trim($_POST['email']);    }    //Проверка наличия ТЕКСТА сообщения    if(trim($_POST['message']) == '') {        $hasError = true;    } else {        if(function_exists('stripslashes')) {            $comments = stripslashes(trim($_POST['message']));        } else {            $comments = trim($_POST['message']);        }    }        //Если ошибок нет, отправить email    if(!isset($hasError)) {        $emailTo = 'mail@asdq.ru'; //Сюда введите Ваш email        $body = "Name: $name \\n\\nEmail: $email \\n\\nPhone: $subject \\n\\nMessage:\\n $comments";        $headers = 'From: My Site <'.$emailTo.'>' . "\\r\\n" . 'Reply-To: ' . $email;        mail($emailTo, $subject, $body, $headers);        $emailSent = true;    }        }?><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ru" lang="ru"><body><?php if(isset($hasError)) { //Если найдены ошибки ?>        <center><p class="error">Проверьте, пожалуйста, правильность заполения всех полей.</p></center>    <?php } ?>    <?php if(isset($emailSent) && $emailSent == true) { //Если письмо отправленл ?>        <center><p><strong>Запрос успешно отправлен!</strong></p>        <p>Спасибо  <strong><?php echo $name;?></strong> за использование контактной формы! Ваша заявка была отправлена, с Вами свяжутся в кратчайшие сроки.</p></center>    <?php } ?>        <form action="#" class="order-form">                <p class="head">ORDER NOW!</p>                <p class="first">Email <span>*</span></p><input type="text" name="email" id="email" value="" class="email-input2"/>                <div class="clear"></div>                <p class="second">Phone number <span>*</span></p> <input type="text" name="subject" id="subject" value="" class="phone-input2"/>                <div class="clear"></div>                                                <input type="checkbox" id="check1" name="c[1]"/><label for="check1"><span></span>SEO promotion</label>                <input type="checkbox" id="check2" name="c[2]"/><label for="check2"><span></span>Advancement in the social networks</label>                <input type="checkbox" id="check3" name="c[3]"/><label for="check3"><span></span>Contesxtual advertising</label>                <input type="checkbox" id="check4" name="c[4]"/><label for="check4"><span></span>Web audit</label>                <input type="checkbox" id="check5" name="c[5]"/><label for="check5"><span></span>Banner advertising</label>                <input type="checkbox" id="check6" name="c[6]"/><label for="check6"><span></span>Complex service</label>                                <textarea name="message" id="message" placeholder="Some aditional info ..."></textarea>                <input type="submit" class="submit" value=""/>            </form>    </body></html>ссылка - http://pastebin.com/dBEMVQj9прошу помочь именно прикрутить checkbox, к этой форме, чтобы отравлялось на мыло.
 
Верх