Ver Mensaje Individual
  #4 (permalink)  
Antiguo 01/09/2012, 04:00
jossss
 
Fecha de Ingreso: mayo-2006
Mensajes: 475
Antigüedad: 18 años
Puntos: 58
Respuesta: Problema al enviar datos de un select a php

El var dump te da NULL por que está mal escrito. El warning es porque se ha mostrado texto en la pagina antes de hacer el location. Prueba así y nos cuentas
Código PHP:
Ver original
  1. $name = (string) $_POST["nombre"];
  2. $apel = (string) $_POST["apel"];
  3. $numpers = (string) $_POST["numpers"];
  4. $tiphab = (string) $_POST["tiphab"];
  5. $fecent = (string) $_POST["fechaentrada"];
  6. $fecsal = (string) $_POST["fechasalida"];
  7. var_dump($_POST);