I am sending a value of a variable from an http url to another cfm page, but I am not sure how to get that value on the other page. In php we use $_GET['variable']; I am not sure what is the equivalent of that in ColdFusion.
|
|
||||
|
|
|
ColdFusion has the option of accessing these variables very much like you're doing in PHP: PHP:
CFScript:
CFML:
Edit: Discussion of Form Scope Case Insensitivity, and a Workaround ColdFusion will (helpfully?) convert all form fieldnames to uppercase in the form scope. In cases where a fieldname is repeated, the multiple values will be merged into a single comma-separated value. When you don't have control over the form itself, this can lead to frustration. Given the form:
The form scope on the receiving page would look like this:
But you can use conFUSion=abc&CONfusion=def&Submit=Submit Since ColdFusion structs are case-insensitive, we can't simply parse this string into a regular struct. Instead we can turn to
Dumping the
...and finally:
|
|||||||||||||||
|
|
There are enough good answers, but I'll just add that one of the nice things about associative array notation for accessing struct keys is that you still have access to keys that are syntactically invalid. So if you created a page called test.cfm like such:
And called it like such:
You would see 'foo' output on the page. But if you tried this:
You would see:
Because variable names can't contain spaces. Of course no one would intentionally name a URL parameter with a space (I hope), but this comes in handy with things like queries and external data is out of the developers immediate control. |
|||
|
|
|
You can access them using |
|||
|
|
|
I've done this in coldfusion 7 before. You can use the cgi.query_string value to get the query string and then split as follows:
Make sure that you decode the values. |
|||
|
|

