Re: accessing CGI.pm params directly

2002-02-07 Thread Jenda Krynicky
Date sent: Thu, 7 Feb 2002 18:13:05 -0500 (EST) From: "Brett W. McCoy" <[EMAIL PROTECTED]> To: Jenda Krynicky <[EMAIL PROTECTED]> Copies to: "Beginners (E-mail)" <[EMAIL PROTECTED]> Subject:

Re: accessing CGI.pm params directly

2002-02-07 Thread Brett W. McCoy
On Thu, 7 Feb 2002, Jenda Krynicky wrote: > P.S.: I am not using Perl for CGI but ... I looked for a "proper" > widely used & tested HTML escape function in the common > modules and did not find any. I was not looking hard enough, right? You can use HTML::Entities and URI::Escape for escaping of

Re: accessing CGI.pm params directly

2002-02-07 Thread Jenda Krynicky
From: "Scott Lutz" <[EMAIL PROTECTED]> > I want to access parameters right out of the query_string with out > having to declare them into distinct variables first, but always come > up with hash reference errors. > > This is what I tried : > print qq{ value="$q->param('owner_em

Re: accessing CGI.pm params directly

2002-02-07 Thread Brett W. McCoy
On Thu, 7 Feb 2002, Scott Lutz wrote: > I want to access parameters right out of the query_string with out > having to declare them into distinct variables first, but always come up > with hash reference errors. > > This is what I tried : > print qq{ value="$q->param('owner_email')">\n}; > > and