> <input type="radio" name="var" value="1"> > <input type="radio" name="var" value="2"> > <input type="radio" name="var" value="3">
And if you want to make one of those selected use something like this: <? $var = 2; ?> <input type="radio" name="var" value="1" <? if ($var==1) printf("SELECTED"); ?> > <input type="radio" name="var" value="2" <? if ($var==2) printf("SELECTED"); ?> > <input type="radio" name="var" value="3" <? if ($var==3) printf("SELECTED"); ?> > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]