I must be doing something wrong. I read the manual but when I add the DATE_FORMAT() it errors. I have the following. Thanks again.
mysql_select_db($database_EventConnection, $EventConnection);
$query_rsEvent = "SELECT * FROM tblEvent ORDER BY EventTime ";
$rsEvent = mysql_query($query_rsEvent , $EventConnection) or die(mysql_error());
$row_rsEvent = mysql_fetch_assoc($rsEvent);
$totalRows_rsEvent = mysql_num_rows($rsEvent);
?>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<?php do { ?>
<?php echo $row_rsEvent['Location']; ?> <?php echo $row_rsEvent['EventTime']; ?><br>
<?php } while ($row_rsEvent = mysql_fetch_assoc($rsEvent)); ?>
<br>
</body>
</html>
<?php
mysql_free_result($rsEvent);
?>