Loryn,
I think this is what you're asking but forgive me if I've misunderstood the
question:
All of your form input values, when submitted with a GET command, will be
accessible from the URL.
This means that any variables from your form can be accessed on the form
action's target template from within the URL scope.
An example:
Your form contains
<form action="process.cfm" method="get">
<input type="hidden" name="this" value="sausage">
</form>
When submitted, the url in the browser will show:
http://www.funjunkie.co.uk/process.cfm?this=sausage
Which you can access as 'url.this'
so <cfoutput>#url.this#</cfoutput> will show 'sausage'
This doesn't have to apply to forms submitted with GET only - any variable
put into the URL can be accessed like this.
If you have multiple values in your form, you'll be able to access them
individually as 'url.nameofthisvariable1' and 'url.nameofthisvariable2' etc
etc.
Be aware that if you have checkboxes in your form and they are not checked
then they won't be passed in the url.
-------------------------------------------------------
Rich Wild
Senior Web Designer
-------------------------------------------------------
e-mango.com ltd Tel: 01202 587 400
Lansdowne Place Fax: 01202 587 401
17 Holdenhurst Road
Bournemouth Mailto:[EMAIL PROTECTED]
BH8 8EW, UK http://www.e-mango.com
-------------------------------------------------------
This message may contain information which is legally
privileged and/or confidential. If you are not the
intended recipient, you are hereby notified that any
unauthorised disclosure, copying, distribution or use
of this information is strictly prohibited. Such
notification notwithstanding, any comments, opinions,
information or conclusions expressed in this message
are those of the originator, not of e-mango.com ltd,
unless otherwise explicitly and independently indicated
by an authorised representative of e-mango.com ltd.
-------------------------------------------------------
> -----Original Message-----
> From: Loryn C Williams [mailto:[EMAIL PROTECTED]]
> Sent: 25 April 2001 19:44
> To: CF-Talk
> Subject: Decoding information from a "Get" method submission
>
>
> All,
> I am running up against a problem I have never encountered before
> an am hoping to get a bit of help
> here. I have searched the docs and mail-archive already with no
> success.
>
> I have a cf form that is being accessed by an html form that MUST
> submit data using the get method.
> How do I pull the query information and split the variables?
>
> I've done it with cgi scripting, but don't know where to begin
> for this.
> Any help will be appreciated.
>
> Thanks in Advance
> Loryn Williams
>
>
>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at
http://www.fusionauthority.com/bkinfo.cfm
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists