Cita:
Iniciado por LuisHerrera
al intentar ingresar los datos en la aplicación me manda el echo que indica capos vacios aun y cuando cambie todos los campos a tipo texto
Prueba a hacer un echo de las variables $_POST para saber si el formulario te está enviando los datos, algo así:
Código PHP:
Ver original<?php
$th=$_POST['thabitacion'];
$FE=$_POST['FechaE'];
$FS=$_POST['FechaS'];
$adul=$_POST['adultos'];
$n=$_POST['niños'];
echo $th." - ".$FE." - ".$FS." - ".$adul." - ".$n;
?>