home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 July / PCWorld_2000-07_cd.bin / Komunik / sambar / _SETUP.1 / nobuffer.pl < prev    next >
Text File  |  1998-07-09  |  196b  |  9 lines

  1. $| = 1;  # Use unbuffered output
  2. print "Content-type: text/html\n\n<H1>Testing unbuffered output</H1>\n";
  3. foreach $_ (0 .. 29) {
  4.     print 30-$_,"<BR>\n";
  5.     sleep(1);
  6. }
  7.  
  8. print "0<BR>Done.\n";
  9.