Hi,
I have a database table with several hundred records. The DB table has these fields:
- id
- name
- date
All the dates are in YYYY-MM-DD format. However, when they're displayed on my website, I want the dates to display like this:
Jan 1, 2006 or
Dec 12, 2006 (whatever the correct date is)
Is there a function in PHP that I can use to convert YYYY-MM-DD to the more elegant format above?
Thanks for your help,