I am displaying some records from mySQL from php and one of the fields I echo out is a date field but it currently prints out the time at the end to.
How can I just
The easiest way is to convert it in the mySQL query using DATE():
SELECT columnname, DATE(datecolumn) FROM .....