Stas Bekman wrote:
STDIN is not used with mod_perl.
It depends on how you write your program. When you don't qualify your
read and print calls with $r, then you do use STDIN, though mod_perl
overrides it, and does the qualified $r->read() calls behind the scenes
(via the perlio layer), but esse
Markus Wichitill wrote:
peter pilsl wrote:
I need to process and output data delivered via a webbrowser using the
CGI-interface.
To deal with "real" unicode-data I set the whole STDIN and STDOUT to
utf8 with binmode (as recommended at
http://www.perldoc.com/perl5.8.0/pod/perluniintro.html. My sc
peter pilsl wrote:
I need to process and output data delivered via a webbrowser using the
CGI-interface.
To deal with "real" unicode-data I set the whole STDIN and STDOUT to
utf8 with binmode (as recommended at
http://www.perldoc.com/perl5.8.0/pod/perluniintro.html. My script would
not work oth
I need to process and output data delivered via a webbrowser using the
CGI-interface.
To deal with "real" unicode-data I set the whole STDIN and STDOUT to
utf8 with binmode (as recommended at
http://www.perldoc.com/perl5.8.0/pod/perluniintro.html. My script would
not work otherwise)
While this