hi guys i have the latest cvs , my function used to work now it doesnt
function
progressbar_percentage($i,$files,$newwin,$moviename,$status,$sleep=null){
if (is_array($files)) $per = $i/count($files); else $per = $i/$files;
$per = $per*100;
$buffer = "<script language=\"javascript\">\n";
$buffer .= "var movie=".$newwin.".document.".$moviename.";\n";
$buffer .= "movie.TGotoFrame(\"_root.Status\", 1);\n";
$buffer .= "movie.SetVariable(\"_root.Status.processing\",
\"".$status."\");\n";
$buffer .= "movie.TSetProperty(\"_root.Bar\",2, ".ceil($per).");\n";
$buffer .= "movie.SetVariable(\"_root.Percent.per\", \"".ceil($per)."
%\");\n";
$buffer .= "</script>\n";
print ($buffer);
flush();
sleep(1);
}
this i meant to flush on every loop and show a progress percentage although
now php wont flush anything until half way through the loop and causes
javascript errors as it never flushed until too late , what could be the
problem ?
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, visit: http://www.php.net/unsub.php