Re: Grab info from returned page and make into variable

2006-08-15 Thread Marty Rock
Use cfhttp to grab the page and parse it either using the built in CF string and xml functions or using regular expressions. Using this method, when I have the page returned to me, I guess I would need to do a find on cfhttp.filecontent, but that just tells me it found something, how do I then

RE: Grab info from returned page and make into variable

2006-08-14 Thread Jake Churchill
It sounds like you can throw this code in a function and return a type query. You will need to use dynamic naming to do this so like name_#username_id#, phone_#username_id#, etc. -Original Message- From: Marty Rock [mailto:[EMAIL PROTECTED] Sent: Monday, August 14, 2006 9:55 AM To:

RE: Grab info from returned page and make into variable

2006-08-14 Thread Andy Matthews
cfhttp? !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Marty Rock [mailto:[EMAIL PROTECTED] Sent: Monday, August 14, 2006 9:55 AM To:

RE: Grab info from returned page and make into variable

2006-08-14 Thread loathe
Use cfhttp to grab the page and parse it either using the built in CF string and xml functions or using regular expressions. -Original Message- From: Marty Rock [mailto:[EMAIL PROTECTED] Sent: Monday, August 14, 2006 10:55 AM To: CF-Talk Subject: Grab info from returned page and make

RE: Grab info from returned page and make into variable

2006-08-14 Thread Jake Churchill
Maybe I read this wrong. I got the impression you had a login script which returns from a DB the rest of the information. -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Monday, August 14, 2006 2:18 PM To: CF-Talk Subject: RE: Grab info from returned page and make

Re: Grab info from returned page and make into variable

2006-08-14 Thread Denny Valliant
On 8/14/06, loathe [EMAIL PROTECTED] wrote: Use cfhttp to grab the page and parse it either using the built in CF string and xml functions or using regular expressions. Uuuu! If it's in a HTML table, using the XML functions are pretty easy to maintain, vs. a ton of regex. Depends on when the