![]() |
|
Syntactic Confectionery Delight | |
PerlMonks |
Re: stdin in perlby bv (Friar) |
on Sep 24, 2009 at 22:06 UTC ( #797340=note: print w/replies, xml ) | Need Help?? |
STDIN is a file descriptor (file handle in Perl) that is usually connected to the keyboard input. In the case of a CGI script, HTTP POST data is fed to STDIN, so you can read it with readline or the <> operator. A much better way is to use a CGI module, such as the core CGI module.
In Section
Seekers of Perl Wisdom
|
|