Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #55.0K
~314 People Reached
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for becraig

Hi Reply if this code is of any use for you. <cfset test_data = "string variable having li tags"> <cfset test_data = Replace(test_data, "<li class=class>", "$@*","all")> <cfset test_data = Replace(test_data, "</li>", "$@*","all")> <cfloop list="#test_data#" delimiters="$@*$@*" index="item"> <cfoutput>#item#</cfoutput><br /> </cfloop>

Member Avatar for l14n
0
87
Member Avatar for acampolonghi

Hi Reply if this works (You need to replace your code's relevant portion with this) [CODE] <!--- extract data from XML document and convert to query ---> <cfset lstColumns = "KH,NH,KC,NC,KD,ND,KS,NS,KL,NL,KZ,NZ,LR,KR,NR,MP,RR,IP,IL,IN,IF,PH,SH"/> <cfset q2 = queryNew(lstColumns)/> <!--- <cfif isXml(cfhttp.fileContent)> avialable in CF7 only ---> <cfset xmlObject = xmlParse(xmldata)/> <cfloop index="i" from="1" …

Member Avatar for l14n
0
227

The End.