Files
AvianVisitors/scripts/update_inprogress.php
T
mcguirepr89 65e15906e3 testing this
2022-02-03 14:28:26 -05:00

12 lines
242 B
PHP

<?php
$timer=60;
header( "refresh:$timer;url=/viewdb.php" );
$handle = popen("tail -f /tmp/phpupdate.log", 'r');
while(!feof($handle)) {
$buffer = fgets($handle);
echo "$buffer<br/>\n";
ob_flush();
flush();
}
pclose($handle);