How do I set radio buttons as select one or all

L

Lynn

My website is littlesaigonmarket.com and I need to set up my radio buttons on
my menu ordering form as an optional select one to all buttons. This option
is for when the customer wishes to select more than one item.
 
R

Ronx

Use checkboxes, not radio-buttons.

Checkboxes are for choosing none, one or many from a selection.
Radio-buttons are for choosing one from a selection.
 
A

Andrew Murray

radio buttons are by their nature a "select one or the other" type - where the
"group name" is the same

eg

<input type="radio" name="group1" value="option1">
<input type="radio" name="group1" value="option2">

etc

If you want to have it so you can choose one or many options, use the checkbox
input type.

even if you name your radio buttons different "names" you can 'check' them but no
'uncheck' if you change your mind over which option you want, whereas checkboxes
are designed as "check" and "uncheck" actions.
 
Top