I've deleted the code now, but I was trying to use mktime. When I went to the page, the dates just came out as completely random.
here's the code I've got in there at the mo. A combination of Dreamweaver generated and me generated:
<?php
#month code
$monthname = array( 1 => "January", 2 => "February", 3 => "March", 4 =>
"April", 5 => "May", 6 => "June", 7 => "July", 8 => "August", 9 =>
"September", 10 => "October", 11 => "November", 12 => "December");
echo $monthname[$row_event['month']]
?>
<?php echo $row_event['day']; ?>, <?php echo $row_event['year']; ?>
I know it's a bit of a long way round, but at least I know it works! But as I'm still a bit of a novice, I'll appreciate any suggestions...