Moin!
Hat vielleicht jemand eine Idee, Hinweis oder Tipp?
1. "Ajax"
2. Multipart:
<?php
header('Content-type: multipart/x-mixed-replace;boundary=endofsection');
$pmt = array("--", "\\", "|", "/" );
for( $i = 1; $i < 100; $i ++ ){
print "\n--endofsection\n";
print "Content-type: text/html\n\n";
print "<html>
<head><title>Counter</title></head>
<body>
<h1>".$i."% ".$pmt[$i % 4]."</h1>
<div style='width: ".$i."%; background-color:green'> </div>
</body>
</html>
";
ob_flush();
flush();
sleep(1);
}
print "\n--endofsection\n";
print "Content-type: text/html\n\n";
print "<html>
<head><title>Fertig</title></head>
<body>
<h1>Fertig ...</h1>
<p><a href=\"".$SERVER['PHP_SELF']."\">Neustart</a></p>
</body>
</html>
";
print "\n--endofsection--\n";
?>
Das musst Du nur noch für Perl und Deinen Anwendungszweck umformulieren...
MFFG (Mit freundlich- friedfertigem Grinsen)
fastix