Ask a Question related to Macromedia ColdFusion, Design and Development.
-
Motorsports Webmaster #1
Parsing Name=Value Pairs in a URL
I want to quickly parse a URL to retrieve it's set of URL variables. What is
the easiest way to fo this? I do not want to parse it using the URL scope. I
want to search the string and find the vars using based upon the & and =
characters. I thought there might be a UDF for this at CFLib.org but didn't
find one. Thanks for the help...
Motorsports Webmaster Guest
-
Printers' pairs in InDesign
How do I make IDCS print out printers' pairs so that I can make up booklets on my desktop printer? In PageMaker you went to 'Create Booklet' in... -
Using key-pairs in a hosted environment
Hi We have a requirement to process "digitally signed" XML-based software licenses using an ASP.NET web site, hosted on an ISP server. I read an... -
Creating name value pairs in .txt file.
I'm using Director MX on a Windows ME platform. The goal is to export/transfer text information gathered from within a projector to a word... -
Handling name value pairs in a web service
0. Assume an application can send data using HTTP POST. 1. For some reason, it sends the name value pairs using the syntax x.y -- which is... -
Help with Pairs / Memory Game,
Hi would it be possible for you to send or make available your memory game as I am in the early stages of learning lingo and would love to see how... -
kyle969 #2
Re: Parsing Name=Value Pairs in a URL
Using <cfloop collection="#url#" ...> would be the easiest, but you could also:
<cfloop list="#CGI.QUERY_STRING#" delimiters="&" index="item">
#ListGetAt(item,1,"=")# is set to #ListGetAt(item,2,"=")# <br/>
</cfloop>
kyle969 Guest
-
Motorsports Webmaster #3
Re: Parsing Name=Value Pairs in a URL
That'll do it. Thanks for the help...! :D
Motorsports Webmaster Guest



Reply With Quote

