Hi everybody! I’d like to set up a dynamic “name†in coldfusion 8, with dreamweaver CS-3! I have 2 Cf checkbox forms: “my†, “your†and 2 Cf Image fields: “nameâ€, “siteâ€. Depending on selection, result must be: “myname†or “yournameâ€; “mysite†or “yoursiteâ€. Could anybody give me a hint? Thank you! H.
I'm sure sure I understand what you need. Sounds like you want radio buttons like this: <form action="action_page.cfm" method="post"> <p>Pick Name</p> <input type="radio" name="pick_name" value="myname" /> <input type="radio" name="pick_name" value="yourname" /><br/><br/> <p>Pick Site</p> <input type="radio" name="pick_site" value="mysite" /> <input type="radio" name="pick_site" value="yoursite" /><br/><br/> <input type="submit" name="submit" value="Go" /> </form> Code (markup): And it sounds like you want it to change the results of something... Did you mean change the results of a query? If so then we need to do some more code. Post some more information and some of the code you are working with.