> Ahh. A buffering issue. > Your content-type: is not appearing before the header.incl. You need > to add "$| = 1;" before the print. > > That's the reason I start nearly all my CGI scripts with: > > #!/usr/bin/perl -Tw > use strict; > $|++; > > so that I don't ever have to worry about STDOUT buffering.
Wow, I never would've guessed. Isn't the copy command sending stuff to STDOUT just like print? How is the stuff in the copy command beating the stuff in the print command? And what is the "T" in -Tw? That doesn't appear to show up in the man page... Thanks for helping with this, I never would've figured that out. - Bryan -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]