is it possible to format a date type field from a mysql database in php if I echo $datum it allways shows as yyyy-mm-dd I would like to show only the month and day Is this possible? and how? Thanks Peter
Date and Time Functions (look at DATE_FORMAT)
I'm sorry but I can't get it I'm new with PHP
I have a Date Type field called $datum in a mysql table I want to echo only the month and the day How can I do that Please give me a hand Thanks peter
SELECT DATE_FORMAT(datum, '%M %d') AS date FROM table