Hi there,
I want to display the date stored in mysql database in user readable format like (dd/mm/yyyy) etc..
My date is "1957-12-22" (the format of the fld in the db is date)
I want to display this similar to 22/12/1957 or 22 Dec 1957.
I used the following statement
<?= date("m/d/Y", strtotime($line['birth_date'] ))?>
I got an error as
Warning: date(): Windows does not support dates prior to midnight (00:00:00), January 1, 1970 :mad:
I'm going total mad on the dates. Pls help me with this question and also point me to some articles which easily explain me about date and the related things
Thanks
Ahmad