Forum Moderators: coopster
thanks for taking a look firstly,
<?php
db connections etc
$query = "SELECT * FROM mortgage";
$result = mysql_query($query);
?>HTML CODE for tables etc
<?php
while($row = mysql_fetch_assoc($result))
{
?>
then for the results like -
<?php "DATE_FORMAT(TimeDate,'%d-%m-%Y / %H:%i')"?><?php echo $row['TimeDate'];?>
This displays the date "20031219114515" but doesnt format it to what I would like
could you tell me where Im going wrong, thanks