TheMovieman Posted January 31, 2007 Posted January 31, 2007 (edited) In my (MySQL) database, I have dates in the standard yyyy-mm-dd format and was wondering how to convert it on screen to read the date printed out (ie: 2007-01-31 would read January 31st, 2007 or just January 31st). I'd appreciate any help. I've tried googling this but nothing came up that was helpful... Edited January 31, 2007 by TheMovieman Quote
TCH-Bruce Posted January 31, 2007 Posted January 31, 2007 You can do it with PHP. See this page. ><?php echo date("F jS, Y"); ?> Quote
TheMovieman Posted January 31, 2007 Author Posted January 31, 2007 You can do it with PHP. See this page. ><?php echo date("F jS, Y"); ?> Excellent, thanks Bruce! Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.