PDA

View Full Version : POSTing from F5


Boethius
01-16-2003, 03:59 PM
How do I POST out of flash5 and then pick up the variables with coldfusion?

Thanks for the reply!

tg
01-16-2003, 04:09 PM
heres how i do it:
flash5:

//loader is a empty mc
loader.var1="test";
loader.var2="me";
loader.loadVariables("mycf.cfm","POST");


in cf:

<cfparam name="v1" default=FORM.var1>
<cfparam name="v2" default=FORM.var2>