Ver Mensaje Individual
  #3 (permalink)  
Antiguo 03/07/2013, 11:38
keygen20
 
Fecha de Ingreso: noviembre-2008
Mensajes: 150
Antigüedad: 15 años, 5 meses
Puntos: 1
Respuesta: Consulta sobre fechas en PHP usando date

yo creo que la mejor forma seria ASI .. LA MAS SIMPLE:

Código PHP:
$birthday_year $_POST['birthday_year'];
$birthday_month $_POST['birthday_month'];
$birthday_day $_POST['birthday_day'];


$birthday date("Y-m-d"strtotime("$birthday_year-$birthday_month-$birthday_day"));

echo 
$birthday