I want insert many date into datebase, most of them all write as normally, so that I can use strtotime get the time like '1299XXXXXX'.
And there still have some dates, write like this: day/month/year hour/minute/seconds
echo strtotime('12/03/2011 18:00:52'); //this will get 132293165220
Thus, I can not unit all the date in my datebase. How to solve the problem? Thanks.