Hi all:
How can i add this command (SELECT DATE_FORMAT('CreateDate', '%b:%d:%Y') to the sql command below so that i can get the date fromat as month, date, year (Example : jan 23, 2004). ?
$connection = mysql_connect($host,$user,$password)
or die ("Couldn't connect to the service.");
$db = mysql_select_db($database,$connection)
or die ("couldn't connect to the server");
$query = "SELECT * FROM eventbl ORDER BY MemID DESC ";
$result = mysql_query($query)
or die ("Couldn't excute query.");
Bookmarks