CodeIgniter Forums
Calendar Date format - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Calendar Date format (/showthread.php?tid=30713)



Calendar Date format - El Forum - 05-24-2010

[eluser]happyeddie[/eluser]
The Codeigniter calendar date format is currently single digits for the single date.
Is it possible to make the calendar display the single date with a zero before it?
so 4, now becomes 04 - I need this to help with the sql date in the database.


Calendar Date format - El Forum - 05-24-2010

[eluser]vitoco[/eluser]
there a function to pad a string

str_pad( $string , $max_lenght , $fill_string );

i hope it helps you