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&#93;{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>Спасибо &#60;strong><?php echo $name;?></strong> за использование контактной формы! Ваша заявка была отправлена, с Вами свяжутся в кратчайшие сроки.</p></center> <?php } ?> <form action="#" class="order-form"> &nbsp; <p class="head">ORDER NOW!</p> &nbsp; <p class="first">Email <span>*</span></p><input type="text" name="email" id="email" value="" class="email-input2"/> &nbsp; <div class="clear"></div> &nbsp; <p class="second">Phone number <span>*</span></p> <input type="text" name="subject" id="subject" value="" class="phone-input2"/> &nbsp; <div class="clear"></div> &nbsp; &nbsp; &nbsp; <input type="checkbox" id="check1" name="c[1]"/><label for="check1"><span></span>SEO promotion</label> &nbsp; <input type="checkbox" id="check2" name="c[2]"/><label for="check2"><span></span>Advancement in the social networks</label> &nbsp; <input type="checkbox" id="check3" name="c[3]"/><label for="check3"><span></span>Contesxtual advertising</label> &nbsp; <input type="checkbox" id="check4" name="c[4]"/><label for="check4"><span></span>Web audit</label> &nbsp; <input type="checkbox" id="check5" name="c[5]"/><label for="check5"><span></span>Banner advertising</label> &nbsp; <input type="checkbox" id="check6" name="c[6]"/><label for="check6"><span></span>Complex service</label> &nbsp; &nbsp; <textarea name="message" id="message" placeholder="Some aditional info ..."></textarea> &nbsp; <input type="submit" class="submit" value=""/> </form> </body></html>ссылка - http://pastebin.com/dBEMVQj9прошу помочь именно прикрутить checkbox, к этой форме, чтобы отравлялось на мыло.