>  -----------------------------
>  At a guess I would say it is a server side problem.
>
>  Post the parts of your script that handle the time and we can offer more
>  comment.


Let me start with the timetest.php that my hosting company uploaded
and claim is working



$timeadjust = ($hourdiff * 60 * 60);

$melbdate = date("l, d F Y h:i a",time() + $timeadjust);

print ("$melbdate");

?>

It is not accurate when I run it., three minutes off.


For the script on my pages, all the time related lines (just in case
an odd one is impacting others ) are :

MM/DD&nbsp;&nbsp;UTC<br />


 $thiskey = time();

also....

$ulstring = $crumbles[2].','.$crumbles[3].','.$crumbles[4].','.time();

also.....

if(abs($ulstring[4]) > time()-1800) {
also...



Also...

<?php $time_start = microtime(true); $miprefix = array('A', 'K', 'N',
'W', 'G', 'M', '2'); ?>
also....

if ($thiskey < time()-86400) { dba_delete($thiskey, $textlines); }
else { $stack[] = $thiskey."".dba_fetch($thiskey, $textlines); }
 $thiskey = dba_nextkey($textlines);


also....

<?php $time_end = microtime(true); $time = ($time_end - $time_start) * 1000; ?>
<p><span style="font-style: italic; font-size: 50%;">Processing took
<?php echo round($time, 3); ?> milliseconds</span></p>
</body>

Reply via email to