You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
384 B
Perl

#!/usr/bin/perl
use CGI::Push;
$co = new CGI::Push;
$co->do_push(-next_page=>\&page);
sub page
{
my($obj, $counter) = @_;
return undef if $counter > 50;
return
$co->start_html,
$co->br,
$co->center($co->h1('Server Push Example')),
$co->br,
$co->center($co->h1('Counter: ', $counter)),
$co->end_html;
}