July 25, 200917 yr Hi Could someone please shead some light on my problem. I am trying to create a form with multiple choice radio buttons. What I'm after is 4 topics, 'Welcome', 'service', 'food' and 'decor' and the choices will be, excellent, good, average and poor for each. I have no problem with the html code but I can't seem to get my php script correct. Here is my html code for the first 1; <label> <input type="radio" name="welcome" value="excellent" id="welcome_0" /> Excellent</label> <br /> <label> <input type="radio" name="welcome" value="good" id="welcome_1" /> Good</label> <br /> <label> <input type="radio" name="welcome" value="average" id="welcome_2" /> Average</label> <br /> <label> <input type="radio" name="welcome" value="poor" id="welcome_3" /> Poor</label> <br /> Could someone please give me an example of how to write php script to make this work? Thanks
July 25, 200917 yr I'm fairly certain that you can't have multiple choice radio buttons; they are for you to choose only one option. You need checkboxes to be able to check several. http://www.wickham43.net/forms.php
Create an account or sign in to comment