RE: please please comfirm (was Parsing variables)

2003-03-04 Thread Dan Muey
From: R. Joseph Newton [mailto:[EMAIL PROTECTED] > Sent: Tuesday, March 04, 2003 3:09 PM > To: Luinrandir Hernsen > Cc: Dan Muey; [EMAIL PROTECTED] > Subject: Re: please please comfirm (was Parsing variables) > > > Luinrandir Hernsen wrote: > > > Thank you for your

Re: please please comfirm (was Parsing variables)

2003-03-04 Thread R. Joseph Newton
Luinrandir Hernsen wrote: > Thank you for your help but I want to learn this too > > Here is the code from the HTML GET First, I am sort of mystified as to why you want to use the GET method. This method is designed specifically for cases where you want to download the specified file. It

Re: please please comfirm (was Parsing variables)

2003-03-04 Thread Rob Dixon
Hi. I think the list is missing a post or two in this thread? Anadi Taylor wrote: > > From: "Luinrandir Hernsen" <[EMAIL PROTECTED]> > > To: "Anadi Taylor" <[EMAIL PROTECTED]> > > Subject: Re: please please comfirm (was Parsing variables) >

Re: please please comfirm (was Parsing variables)

2003-03-03 Thread Anadi Taylor
From: "Luinrandir Hernsen" <[EMAIL PROTECTED]> To: "Anadi Taylor" <[EMAIL PROTECTED]> Subject: Re: please please comfirm (was Parsing variables) Date: Mon, 3 Mar 2003 18:53:19 -0500 > I might be barking up the wrong tree here but I have never seen > que

please please comfirm (was Parsing variables)

2003-03-03 Thread Luinrandir Hernsen
Thank you for your help but I want to learn this too Here is the code from the HTML GET North West And here I think is the CGI code $input=$ENV{QUERY_STRING}; @pairs = split(/&/, $input); foreach $pair (@pairs) { ($name, $value)=split(/=/,$pair); $form

RE: Parsing variables

2003-03-03 Thread Dan Muey
No no no, don't do it by hand. There's to many things to keep track of, use the CGI module it handles all the messy details for you and do it better than anything you can write ( no offense ;p ) :: use CGI qw/:standard/;; $var = param('var'); $monkey = param('monkey'); print header(); print "You

Parsing variables

2003-03-03 Thread Luinrandir Hernsen
Hallo I need simple parsing code for a "get" not a "post". that will yeild 4 or 5 variables. Lou #I know I need to get rid of the "&" # Split the name-value pairs @pairs = split(/&/, $ENV{'QUERY_STRING'}); foreach $pair (@pairs) { # Split the pair up into individual variables.

Parsing variables and HTML

2002-04-16 Thread Daniel Falkenberg
Hello All, I am having a little bit of trouble with HTML and perl. I want to be able to parse variable from some HTML code where a user hits a submit button and the data they entered from that from should be parsed to the next sub. At the moment I am using the following code... $action = param(