Deprecated: Assigning the return value of new by reference is deprecated in /home/zona003/public_html/wp-settings.php on line 520

Deprecated: Assigning the return value of new by reference is deprecated in /home/zona003/public_html/wp-settings.php on line 535

Deprecated: Assigning the return value of new by reference is deprecated in /home/zona003/public_html/wp-settings.php on line 542

Deprecated: Assigning the return value of new by reference is deprecated in /home/zona003/public_html/wp-settings.php on line 578

Deprecated: Function set_magic_quotes_runtime() is deprecated in /home/zona003/public_html/wp-settings.php on line 18

Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /home/zona003/public_html/wp-settings.php:520) in /home/zona003/public_html/wp-content/plugins/wordpress-automatic-upgrade/wordpress-automatic-upgrade.php on line 121

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/zona003/public_html/wp-settings.php:520) in /home/zona003/public_html/wp-content/plugins/wordpress-automatic-upgrade/wordpress-automatic-upgrade.php on line 121
Conversion de Fechas a Formato MySQL | DamageBlog

Conversion de Fechas a Formato MySQL  1,062 views

November 1 2007 Categorized Under: PHP y MySQL No Commented


Un par de lineas muy utilces a la hora de registrar fechas en una tabla MySQL, estas requieren ser insertadas en el formato “aaaa-mm-dd” para mysql, y por lo general nosotros utilizamos el formato “dd/mm/aaaa”.

// Fecha en Nuestro Formato
$dtm_fechainicial = “01/11/2007″;

// Creamos una lista de variables a la cual le asignamos los valores parciales de $dtm_fechainicial, divididos por el signo “/”
list( $dia, $mes, $anio) = split( ‘[/__]‘, $dtm_fechainicial );

// reasignamos la fecha a $dtm_fechainicial con su nuevo formato
$dtm_fechainicial = “$anio-$mes-$dia”;

Listo, con esto podemos insertar la fecha en la tabla.

Saludos

Popularity: 3% [?]

Otros Posts Interesantes

comments

Leave a Reply


Warning: Please contact support about failure in /home/zona003/public_html/wp-content/themes/LenoMag/footer.php on line 1