Existe alguna forma de cambiar la forma en que se crea el valor del helper de fecha?? por ejemplo estoy seleccionando la fecha de hoy y me la pone como 18-09-2008 y me gustaria que la mostrara como 18/09/2008. Adicional a esto, no me guarda las fechas ya que mysql lo tiene en formato Y-M-D.
Alguna ayuda para saber que archivo editar para modificar este comportamiento.
Gracias y felicidades por esta nueva RC esta super.
Comentarios
<?echo date_field_tag("fecha", "format: %d/%m/%Y") ?>
%a abbreviated weekday name
%A full weekday name
%b abbreviated month name
%B full month name
%C century number
%d the day of the month ( 00 .. 31 )
%e the day of the month ( 0 .. 31 )
%H hour ( 00 .. 23 )
%I hour ( 01 .. 12 )
%j day of the year ( 000 .. 366 )
%k hour ( 0 .. 23 )
%l hour ( 1 .. 12 )
%m month ( 01 .. 12 )
%M minute ( 00 .. 59 )
%n a newline character
%p “PM” or “AM”
%P “pm” or “am”
%S second ( 00 .. 59 )
%s number of seconds since Epoch (since Jan 01 1970 00:00:00 UTC)
%t a tab character
%U, %W, %V the week number5
%u the day of the week ( 1 .. 7, 1 = MON )
%w the day of the week ( 0 .. 6, 0 = SUN )
%y year without the century ( 00 .. 99 )
%Y year including the century ( ex. 1979 )
%% a literal % character
Para lo de guardarla en la tabla de mysql kumbia tiene algun componente para convertir mi formato en el formato YYYY-MM-DD o debo escribir mi propia funcion??
Demas esta decir que una función de este tipo es muy sencilla...