Ok, I'm not getting this for some reason, I have used the mktime function to insert the date/numbers into MySQL.
But now I want to be able to take those numbers and display them as a readable date format like this 9/22/03 on the webpage.
When I try
date_format(date, '%m/%d/%Y') as new_date
in my SQL query, it doesn't work. What am I doing wrong? I guess I'm not understanding the way it formats and I did look at php.net and still didn't understand it.
Thanks.