cfhttp.filecontent help!

2005-06-09 Thread Aldon Moore
I am using cfhttp to retreive data from another server that is returned as name/value pairs delimited by "&" eg: a=1&b=2&c=thats all. How do I assign each of these values to its own variable? ~| Logware (www.logware.us): a new

Re: cfhttp.filecontent help!

2005-06-09 Thread Charlie Griefer
treat the string as a list, delimited by "&". treat each list item as a 'nested' list delimited by "=" are you just trying to extrapolate "1", "2", and "thats all" and assign those values to your own variables? On 6/9/05, Aldon Moore <[EMAIL PROTECTED]> wrote: > I am using cfhttp to retreive data

RE: cfhttp.filecontent help!

2005-06-09 Thread Aldon
Thanks Charlie, Yes I am trying to extrapolate the values and assing them to my variables. -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED] Sent: Thursday, June 09, 2005 11:58 AM To: CF-Talk Subject: Re: cfhttp.filecontent help! treat the string as a list, delimited

Re: cfhttp.filecontent help!

2005-06-09 Thread Charlie Griefer
assign those values to your own variables? > > On 6/9/05, Aldon Moore <[EMAIL PROTECTED]> wrote: > > I am using cfhttp to retreive data from another server that is returned as > name/value pairs delimited by "&" eg: > > > > a=1&b=2&c=thats all. > > > > How do I assign each of the