マイクロタイムを使用してスクリプトの実行時間を取得しています
$time_start = microtime(true);
....
....
//many process here, many result be printed here
$time_end = microtime(true);
$time = substr(($time_end - $time_start),0,5);
echo time;
$time
結果ページの上に印刷することはできますか?私もcssを使ってみましたが、上にも印刷しましたが、$time
まだresulページの一番下に印刷されています。