> mod_perl overrides the perl print() function - print()ing to STDOUT
> explititly will not work.
> just use print() if you can...

sure it will,

print STDOUT "hi";

and

print "hi";

are the same thing, provided STDOUT is the currently selected output
filehandle, which it is by default.

Reply via email to