AdWords API Re: Coldfusion 7 issues
Your xmloutput variable is an array. Loop through and output what you
need, like this:
<cfloop from="1" to="#ArrayLen(xmloutput)#" index="i">
xmloutput[i].getId()
xmloutput[i].getName()
xmloutput[i].getStatus()
xmloutput[i].getDailyBudget()
</cfloop>
There are other methods available, check the adowrds docs, but that
should work.
0 Comments:
Yorum Gönder
<< Home