POrfavor AYUDAAAA!, NESECITO GUARDAR FECHAS..
ASI LO USOOOO!!
Código PHP:
$dia = $_POST['dia'];
$mes = $_POST['mes'];
$ano = $_POST['ano'];
$tiempo = time();
$hora = date("h:i:s", $tiempo);
$str_fecha = "$ano-$mes-$dia $hora";
$fecha_finalizar = strtotime($str_fecha);
$fecha_ingreso_str = date("Y-M-D h:i:s", $fecha_ingreso);
$fecha_ingreso = strtotime($fecha_ingreso_str);
$db->ejecutar("INSERT INTO boletines (empresa, imagen, tipo_publicidad, categoria, ciudad, contenido, fecha_ingreso, fecha_finalizar, activo) VALUES('$nombre_cliente', '$img_abjunta', $tipo_envio, $categoria, $ciudad, '$txt_abjunto', '$fecha_ingreso', '$fecha_finalizar', 1)");
donde ingreso $fecha_ingreso y $fecha_finalizar son campos datetime
El problema es cuando quiero mostrar los datos del boletin en este caso las fechas lo unico que muetra es 0000-00-00 00:00:00 como anteriormente dije..
Ayuda!!