kupe
Technical User
- Sep 23, 2002
- 376
Date function - date("m-D-Y", strtotime($myrow['NewsDate'])) - gives me an abbreviated month. How can I get a full month (March instead of Mar), please, gurus?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT DATE_FORMAT(NewsDate, '%M-%e-%Y') as NewsDateFormatted FROM table;
echo $myrow['NewsDateFormatted'];