> R u looking 4 "nph-push"? > ############################################################ > #! /usr/bin/perl > > $|=1; # don't buffer output > $BOUNDARY="--start-new-page-here--"; # seperates html pages > > print "HTTP/1.0 200 OK\n"; > print "Pragma: no-cache\n"; > print "Content-type: multipart/x-mixed-replace;boundary=$BOUNDARY\n\n"; > print "$BOUNDARY\n"; # tells browser to start a new > page > print "Content-type: text/html\n\n"; # tells it what kind > > for ($count=10; $count >= 0; $count--) { > print "<h1>$count</h1>\n"; > print "Get ready. Here comes <b>" . ($count -1) . "</b>!\n"; > sleep('1'); > print "$BOUNDARY\n"; > print "Content-type: text/html\n\n"; > } > > print "<h1>boom!</h1>\n"; > print "</html>"; # don't forget this! >
no good Zentara, i use IE 5.5, and the M$ browser doesn't support server-push, if this is the case. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]