heres my code bearing in mind im just playing about php teaching myself:
<?php
#Variables
$today = date("l d M Y",$timestamp);
$time = date("H:i:s");
$var1 = 'Todays Date Is ';
$var2 = 'The Curent Time Is ';
$stringtime = $var1.$today;
$stringdate = $var2.$time;
?>
<br>
<?php
?>
<br>
<?php
#display strings
echo $stringtime;
?>
<br>
<?php
echo $stringdate;
?>
but with the timestamp code included it come up with the worng date look
www.danhill.frihost.net/easyjetv/test.php