Código HTML:
<input name="tour[]" type="checkbox" class="stcajatexto" id="tour0" value="Cusco"> <input name="tour[]" type="checkbox" class="stcajatexto" id="tour1" value="Arequipa"> etc...
Código PHP:
function get(obj) {
var poststr = "Nombre=" + encodeURI( document.getElementById("Nombre").value ) +
"&Correo=" + encodeURI( document.getElementById("Correo").value )+
"&Otros=" + encodeURI( document.getElementById("Otros").value );
for (i=0; i<=3; i++){
if (document.getElementById("tour"+i).checked)
poststr = poststr + "&tour[" + i + "] = " + encodeURI( document.getElementById("tour"+i).value );
}
poststr = poststr + "&capt=" + encodeURI( document.getElementById("capt").value )+
"&Submit=" + encodeURI( document.getElementById("Submit").value );
makePOSTRequest('captcha/c-envio-prueba.php', poststr);
}
Código PHP:
if(isset($_POST['Submit']) and $capt->check_result()){
$message_send = "Mensaje desde la página\n\n
Nombre: ".$_POST['Nombre']." \n
Correo: ".$_POST['Correo']." \n
Otros: ".$_POST['Otros']." \n"
foreach ($_POST['tour'] as $id){
echo $id."<br>";
}
;
$headers .= 'To: <'.$email_recipient.'>' . "\r\n";
$headers .= 'From: '.$_POST['Nombre'].' <'.$_POST['Correo'].'>' . "\r\n";