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
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
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
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
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
--
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
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
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
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