Ha. I started a bit of a debate I see.
Thanks a lot for your help.
Here's another:
echo '
<h1>'.$row['start_time'].'</h1>';
$d = date("d", $row['start_time']);
$m = date("m", $row['start_time']);
$y = date("Y", $row['start_time']);
echo '<h1>'.$y.'</h1>';
For some reason the two headings read:
2006-03-31 20:30:00
1969
How come my year is coming out as 1969 after I use the date("Y", ) function on it? Any ideas?
Thanks again
Chris