Hi all,
I have created three radio buttons in my coldfusion page and working fine. But now i want to execute query, depending on the button selected.
ex:
My criteria is to execute a query related to Dev environment when Dev selected,
Execute a query related to STG environment when STG selected,
execute a query related to PRD environment when PRD selected
and to display the results.
My query is working fine but got struck at the if else loop
Kindly help me in achieving this. Thanks in advance
I have created three radio buttons in my coldfusion page and working fine. But now i want to execute query, depending on the button selected.
ex:
Code:
<td><input type="radio" name="Env" value="DEV" checked > Dev</td> <td><input type="radio" name="Env" value="STG" checked > STG</td> <td><input type="radio" name="Env" value="PRD" checked > PRD</td>
Execute a query related to STG environment when STG selected,
execute a query related to PRD environment when PRD selected
and to display the results.
My query is working fine but got struck at the if else loop
Kindly help me in achieving this. Thanks in advance
Comment