Is there a perl equivalent to PHP variables $_POST and $_GET?

2007-06-11 Thread On Ali
Is there a perl equivalent to PHP variables $_POST and $_GET? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Re: Is there a perl equivalent to PHP variables $_POST and $_GET?

2007-06-11 Thread Xavier Noria
On Jun 10, 2007, at 9:18 PM, On Ali wrote: Is there a perl equivalent to PHP variables $_POST and $_GET? Perl is a general-purpose programming language and does not have web stuff builtin. To do web programming you need to pick some library/ framework like CGI.pm or Catalyst for example

Re: Is there a perl equivalent to PHP variables $_POST and $_GET?

2007-06-11 Thread Ovid
- Original Message From: On Ali [EMAIL PROTECTED] Is there a perl equivalent to PHP variables $_POST and $_GET? It would be easy to create, but what you really want is the CGI module: #!/usr/bin/perl use strict; use warnings; use CGI ':standard'; my $id= param('id

Re: Is there a perl equivalent to PHP variables $_POST and $_GET?

2007-06-11 Thread Tom Allison
. On Jun 10, 2007, at 3:18 PM, On Ali wrote: Is there a perl equivalent to PHP variables $_POST and $_GET? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/ -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional