Re: Faking form variables

2001-10-29 Thread Curtis Poe
--- [EMAIL PROTECTED] wrote: > Curtis, > > What is the syntax for passing these values through the url? > Greg Greg, Here's a little snippet borrowed from Randal Schwartz (http://www.perlmonks.org/index.pl?node_id=80240): use URI; use HTML::Entities; my $uri = URI->new("http://ba

RE: Faking form variables

2001-10-29 Thread Bob Showalter
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Friday, October 26, 2001 9:37 AM > To: [EMAIL PROTECTED] > Cc: [EMAIL PROTECTED] > Subject: Re: Faking form variables > > > Curtis, > > What is the syntax for passing the

Re: Faking form variables

2001-10-26 Thread Greg . Froese
Curtis, What is the syntax for passing these values through the url? Greg Curtis Poe <[EMAIL PROTECTED]> 10/25/2001 01:44 PM Please respond to poec To: [EMAIL PROTECTED], [EMAIL PROTECTED] cc: Subject: Re: Faking form variables --- [EMAIL PRO

Re: Faking form variables

2001-10-25 Thread Curtis Poe
--- [EMAIL PROTECTED] wrote: > I'm using the following snippet of code to put all form data passed into a > hash table. > > $form_data_size = $ENV{'CONTENT_LENGTH'}; > read (STDIN, $form_data, $form_data_size); > @info_returned = split (/&/,$form_data); > > foreach $keyvalue (@info_returned) >