Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
samb1 #1
looping through an array using cfhttp
I have a one dimensional array that is populated with string values (in this
case the strings are URL's). Id like to know how i can loop through the array
and perform a cfhttp request on each URL in the array. Thanks in advance.
samb1 Guest
-
Is looping over cfhttp possible?
Hi, Please can some one let me know if it is possible to loop over cfhttp. I have looked everywhere for an answer but can not get the code to... -
Problem with looping over cfhttp
Hi, I am trying to get some image files from a remote server and save them to my server. I have all the paths in a query but when I loop over... -
looping through array elements with cfhttp
I have a one dimensional array that is populated with string values (in this case the strings are URL's). Id like to know how i can loop through the... -
looping through arra elements with cfhttp
I have a one dimensional array that is populated with string values (in this case the strings are URL's). Id like to know how i can loop through the... -
array looping
I have this text file that I pull in and I need to transverse through the file and assign each value in the file into an array. The text in the... -
toniu27 #2
Re: looping through an array using cfhttp
<cfloop from="1" to="#arraylen(myarray)#" index="i">
<cfhttp url="#i#" ... />
</cfloop>
Is it called "Advanced Techniques" :)
toniu27 Guest



Reply With Quote

