Re: Help using %Hashes

2003-03-25 Thread Horace Franklin Jr.
Thanks, I will try your suggestion and let you know the results. - Original Message - From: "Jason Jolly" <[EMAIL PROTECTED]> To: "Horace Franklin Jr." <[EMAIL PROTECTED]> Sent: Tuesday, March 25, 2003 4:31 PM Subject: Re: Help using %Hashes > Y

Re: Help using %Hashes

2003-03-25 Thread Horace Franklin Jr.
Thanks! - Original Message - From: "brad" <[EMAIL PROTECTED]> To: "Horace Franklin Jr." <[EMAIL PROTECTED]> Sent: Tuesday, March 25, 2003 5:15 PM Subject: Re: Help using %Hashes > google for formmail.pl > > don't try to reinvent the wheel,

Fw: Help using %Hashes

2003-03-25 Thread Horace Franklin Jr.
Thanks! > - Original Message - > From: "Jordan Mclain" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Tuesday, March 25, 2003 3:31 PM > Subject: RE: Help using %Hashes > > > > you could do this after you initiate the hash.

Re: Help using %Hashes

2003-03-25 Thread Horace Franklin Jr.
Thanks! > - Original Message - > From: "Bob Showalter" <[EMAIL PROTECTED]> > To: "'Horace Franklin Jr.'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> > Sent: Tuesday, March 25, 2003 3:23 PM > Subject: RE: Help using %Hashes &g

Re: Help using %Hashes

2003-03-25 Thread Horace Franklin Jr.
Tuesday, March 25, 2003 3:19 PM Subject: Re: Help using %Hashes > Horace, > > Are you unsure how to reference the information which will be posted to the > URI kept by the '$url' value? > > I'll gladly help you through getting the post values into your > pro

Help using %Hashes

2003-03-25 Thread Horace Franklin Jr.
Help! I need help using %hashes to receive input from the form below. What changes would I make to the syntax of the commented lines below to do this?. my $form = <Hello! # My name is: # My E-mail is: Message: # Type your message h

RE: Help using %Hashes

2003-03-25 Thread Jordan Mclain
you could do this after you initiate the hash. foreach(sort keys %params) { $params{$_} = $cgi->param($_); } > Help! > > I need help using %hashes to receive input from the form below. > > What changes would I make to the syntax of the commented lines below > t

RE: Help using %Hashes

2003-03-25 Thread Bob Showalter
Horace Franklin Jr. wrote: > Help! > > I need help using %hashes to receive input from the form below. > > What changes would I make to the syntax of the commented lines below > to do this?. Well, none. That code creates the form, which is a different matter from receiving i