pagegen Posted August 3, 2010 Share Posted August 3, 2010 Hello Again guys, I have varous dates stored in a database , these dates can look like this 2010-08-06 07/08/2010 07-08-2010 The problem is I dont know what format they are stored in.. What I need is a function which takes in 1 date at a time and returns it in a format I need it to be.. the format I need is 07/08/2010 thank you again for all you help I have been looking at thr date() but not been able to answer my qustion yet Link to comment https://forums.phpfreaks.com/topic/209671-date-function/ Share on other sites More sharing options...
bh Posted August 3, 2010 Share Posted August 3, 2010 Hi, $date = '2010-08-06'; // or 07/08/2010... date('d/m/Y', strtotime($date)); Link to comment https://forums.phpfreaks.com/topic/209671-date-function/#findComment-1094593 Share on other sites More sharing options...
pagegen Posted August 3, 2010 Author Share Posted August 3, 2010 thank you veyr much Link to comment https://forums.phpfreaks.com/topic/209671-date-function/#findComment-1094594 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.