Jump to content

Single radio button selection per group


Thauwa

Recommended Posts

Give them all the same name but different values:

<input type="radio" name="myrad" value="1" />
<input type="radio" name="myrad" value="2" />
<input type="radio" name="myrad" value="3" />
<input type="radio" name="myrad" value="4" />

 

To read:

$chosen=$_POST['myrad'];

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.