Posted by Olaf Schinkel on 11/30/07 01:19
Hello!
You should see, that a PHP Script is running on the Server, Javascript
on the Client.
So, Javascript has nothing to do with the PHP Script time.
How long is a Script running?
<?PHP
$start = time();
// Your Script
$end = time();
$scripttime = $end - $start;
// taaataaaaa
?>
Maybe you can use additionally ob_start() .....etc
Olaf
[Back to original message]
|