Reg: Perl CGI script Autoupdate with New Data

Cześć Ten skrypt zajmuje 3 * 2 sekundy, a następnie natychmiast drukuje dane wyjściowe w przeglądarce

#!C:/perl/bin/perl.exe
use warnings;
use strict;
use CGI;

my $cgi = new CGI;
print $cgi->header();
print $cgi->start_html("First");
print $cgi->h1("First");
sleep(2);
print $cgi->h1("Second");
sleep(2);
print $cgi->h1("Third");
print $cgi->end_html();

questionAnswers(1)

yourAnswerToTheQuestion