Re: Parsing alg HELP needed

2000-04-08 Thread PC
Worked!!! THANKS!!! - Original Message - From: David Gassner <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, April 05, 2000 11:23 PM Subject: RE: Parsing alg HELP needed > I haven't tested this, but how about: > > > > > > &

RE: Parsing alg HELP needed

2000-04-05 Thread David Gassner
I haven't tested this, but how about: > -Original Message- > From: PC [mailto:[EMAIL PROTECTED]] > Sent: Thursday, April 06, 2000 4:06 AM > To: [EMAIL PROTECTED] > Subject: Re: Parsing alg HELP needed > > > This is helpful... but the one thing tha

Re: Parsing alg HELP needed

2000-04-05 Thread PC
the simplest thing...:) - Original Message - From: Tim Lieberman <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, April 05, 2000 4:46 AM Subject: Re: Parsing alg HELP needed > the keys are produced by the input names, and the values are user supplied > data. > > Why n

Dynamically creating HTTPPARAM tags was: Parsing alg HELP needed

2000-04-05 Thread PC
OK, I think I can do the parsing fine -- but I need to loop thru and create CFHTTPPARAM tags nested inside of a CFHTTP tag ... to do a HTTP POST.I need to loop thru the name/value string: qt=monkey&qs=4&qc=jog&ws=0 ... but what I am not clear how to generate dynamically the HTTPPARAM tags because

Re: Parsing alg HELP needed

2000-04-05 Thread Tim Lieberman
the keys are produced by the input names, and the values are user supplied data. Why not something like: ListAppend(namelist,"formfieldname1"> ListAppend(valuelist,#form.formfieldname1"> ListAppend(namelist,"formfieldname2"> ListAppend(valuelist,#form.formfield

Parsing alg HELP needed

2000-04-05 Thread PC
I am trying to parse some name/value pairs that are POSTed in queries. I want to be able to recontruct searches basically and therefore need to be able to pull out the names and values in strings like the one below. Can anybody recommend approaches? Like which combination of functions in CF would