Das wird wohl kaum funktionieren. Meines Wissens werden die HTML-Daten trotzdem erst zum Browser geschickt, wenn das Skript beendet ist. Es gibt aber eine Methode, das zu umgehen. MetaGer zb. gibt so nach und nach eine HTML-Seite aus. Wie das genau funktioniert, weiß ich leider nicht.
Ausgabepufferung?
Der Webserver selbst wird dafür keinen Grund haben, aber das Perl-Laufzeitsystem möglicherweise.
In "perlvar" habe ich gerade folgendes gefunden:
autoflush HANDLE EXPR
$OUTPUT_AUTOFLUSH
$
If set to nonzero, forces a flush right away and after every write or print on the currently selected output channel.
Default is 0 (regardless of whether the channel is actually buffered by the system or not; $ tells you only whether you've asked Perl explicitly to flush after each write).
Note that STDOUT will typically be line buffered if output is to the terminal and block buffered otherwise. Setting this variable is useful primarily when you are outputting to a pipe, such as when you are running a Perl script under rsh and want to see the output as it's happening. This has no effect on input buffering.
Offenbar kann man das auch auf "stdout", also die Ausgabe eines CGI-Skripts, anwenden. Vielleicht hilft es ja?