emma57573 Posted October 19, 2008 Share Posted October 19, 2008 Im having problems formatting a date from mysql to php In the database its 2008-10-19 08:48:09 and I want it to read 19 Oct 2008 8:48 (or something simular) in php Instead at the moment its reading Thu Jan 01st,1970 01:33 am No matter what date is in the database!! I am using a classified script and I have acomlished this on other php pages by using the following echo freetpl_date($rst["get_date"],0); But I can find the function freetpl_date anywhere to see whats happening! If there a simple way to format this date? Quote Link to comment https://forums.phpfreaks.com/topic/129060-solved-date-format-issues/ Share on other sites More sharing options...
JasonLewis Posted October 19, 2008 Share Posted October 19, 2008 Look into date() and strtotime(). You can achieve what you want when both are using together. Quote Link to comment https://forums.phpfreaks.com/topic/129060-solved-date-format-issues/#findComment-669102 Share on other sites More sharing options...
hmvrulz Posted October 19, 2008 Share Posted October 19, 2008 try this date("j M Y h:i:s"); Quote Link to comment https://forums.phpfreaks.com/topic/129060-solved-date-format-issues/#findComment-669108 Share on other sites More sharing options...
emma57573 Posted October 19, 2008 Author Share Posted October 19, 2008 Thanks Ive figured it out now Quote Link to comment https://forums.phpfreaks.com/topic/129060-solved-date-format-issues/#findComment-669114 Share on other sites More sharing options...
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.