I am creating web order form html and php.I am not php coder.So please sorry if i am wrong .
The demo page is Here
I want if user come and click on check boxes.So i will receive email on completion.when submit.I dont know which tags will be user to get check box data in email.Please be advice.Thanks
The php code is
<?php
$message = '';
$to = "zeee76@gmail.com";
$from = $_POST;
$subject = $_POST ;$message .='
<b>First Name = </b> '.$_POST.'<br />
<b>Last Name = </b> '.$_POST.'<br />
<b>Address = </b> '.$_POST.'<br />
<b>City = </b> '.$_POST.'<br />
<b>Province = </b> '.$_POST.'<br />
<b>Postal = </b> '.$_POST.'<br />
<b>Tel = </b> '.$_POST.'<br />
<b>Mobile = </b> '.$_POST.'<br />
<b>Email = </b> '.$_POST.'<br />
';$body = $message;
$Mail_header = "Content-type: text/html\n";
$Mail_header .= "From:".$_POST."<$from> \n";mail($to, $subject, $body, $Mail_header);
header("Location:thanks.html");
?>