PDA

View Full Version : Noob Question im sure but ;)


Orical
03-24-2004, 02:00 PM
Heya :)
Thanks for Looking..
What i know how to do:
Have 1 flash radio button compoent send data to Coldfusion using loadvarible(..........) & instance names

Problem:
I want to use a radio group.. such that the one selected is the one whos data is sent to coldfusion
now up to now when i use just 1 radio button i use the intance name and loadvarible/post to send data to coldfusion...

What i wanted to do was have a radio group.. and the radio button that has been checked is the value that gets sent...




--------------------------------------------------------------------------------
Example code:
Flash side:
Radio button instanve value = blah
then i do the loadvarible/post

Coldfusion Side
<cfquery datasource="YourDSN">
INSERT INTO USUERS(
blah,
)
VALUES(
'#blah#',

)
</cfquery>

--------------------------------------------------------------------------------



as ya can see the colom name of the database is called blah, and my code is set to input the value from the flash instance raido button called "blah"..

how do i get it to work with a radio group? :)
would this work with check boxes?.. as in only the checked box's are sent to cold fusion? :)


Thanks again..

~Peter:)