<<1. $date = "20010101"; How could I output 01 01 2001 (or make it 3 variables, like day, month, year)?>> $year = substr($date,0,4); $month = substr($date,4,2); $day = substr($date,6,2); ...Assuming that the date is stored in yyyymmdd format. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
- [PHP] Problem! Fredrik Arild Takle
- RE: [PHP] Problem! Brian V Bonini
- RE: [PHP] Problem! Stephan Ahonen
- RE: [PHP] Problem! Benjamin Munoz
- [PHP] ' VS " Jonathan Sharp
- Re: [PHP] ' VS " Philip Olson
- Re: [PHP] Problem! Jeff Warrington
- RE: [PHP] Problem! Maxim Maletsky