Re: param help!

2004-08-14 Thread Owen
On Sat, 14 Aug 2004 16:37:18 +0530 Shillong Dotcom <[EMAIL PROTECTED]> wrote: > Hi > > I am very very new to perl. And after lots of work I did script a perl > file to handle a online form (products order form). However, I am > stuck at a point. I tried my best but could not get thru. > > The fo

param help!

2004-08-14 Thread Shillong Dotcom
Hi I am very very new to perl. And after lots of work I did script a perl file to handle a online form (products order form). However, I am stuck at a point. I tried my best but could not get thru. The form is located at: http://www.kevincoffey.com/order.htm When I select a different shipping ad

Re: CGI::Session param help

2003-10-24 Thread perl
Thanks, I was reading the doc on the cpan site and it wasn't so obvious. But the perldoc CGI::Session showed how to delete so obviously. That's after I figured out how to use perldoc to get to Session. Again, thanks for the patient. > On Oct 24, [EMAIL PROTECTED] said: > >>Can someone tell me h

Re: CGI::Session param help

2003-10-24 Thread Jeff 'japhy' Pinyan
On Oct 24, [EMAIL PROTECTED] said: >Can someone tell me how to delete a parameter in $session->param("BOGUS") >that was set? $session->delete("BOGUS"); Read 'perldoc CGI' for more details. -- Jeff "japhy" Pinyan [EMAIL PROTECTED] http://www.pobox.com/~japhy/ RPI Acacia brother #734

CGI::Session param help

2003-10-24 Thread perl
Can someone tell me how to delete a parameter in $session->param("BOGUS") that was set? $session->param("BOGUS", "hello"); Does this actually removes or just set a null value? $session->("BOGUS", undef); I want to remove or delete it completely. -thanks --

RE: Hash, query->param help

2002-08-14 Thread Hanson, Rob
ED]] Sent: Wednesday, August 14, 2002 3:20 PM To: [EMAIL PROTECTED] Subject: RE: Hash, query->param help If the user doesn't select a county in the first place, $query->param('County') will be undefined, which means that $counties{$query->param('County')}->{Count

RE: Hash, query->param help

2002-08-14 Thread Gregg O'Donnell
unty')}->{County} || ''; > And how do I wrap this so the user will select a county I'm not sure I understand this one. Can you explain what you mean? Rob -Original Message- From: Gregg O'Donnell [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 14, 2002 2:4

RE: Hash, query->param help

2002-08-14 Thread Hanson, Rob
o the user will select a county I'm not sure I understand this one. Can you explain what you mean? Rob -Original Message- From: Gregg O'Donnell [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 14, 2002 2:43 PM To: [EMAIL PROTECTED] Subject: Hash, query->param help I'm

Hash, query->param help

2002-08-14 Thread Gregg O'Donnell
I'm writing a script to send emails to different locations. Some will receive one email, others 3 or 4. Should each county have all the categories, even if some have an empty value, or only the categories for which they have a value. And how do I wrap this so the user will select a county my