put this code at the very top of your webpage
<?
$time = microtime();
$time = explode(' ', $time);
$time = $time[1] + $time[0];
$start = $time;
?>
and this at the very bottom
<?
$time = microtime();
$time = explode(' ', $time);
$time = $time[1] + $time[0];
$finish = $time;
$total_time =...
I can only presume you are building in tables and have never used css before ( as someone that knows css would never ask a question like that )
put something like this between the <head> tags
<style type="text/css">
<!--
body {
background-image:url('back.jpg');
background-attachment:fixed;
}...