[FX.php List] Radio buttons not displaying in some browsers

Jonathan Schwartz jonathan at eschwartz.com
Sat Oct 8 09:44:19 MDT 2005


Hello,

I am having a problem with display of checked radio button on some browsers.

Here's what I know:

OSX
	Firefox	Works
	Safari	Doesn't work
	Explorer	Doesn't work

XP
	Explorer	Works


While the radio buttons can be checked in all cases, and the data is 
received, the problem is that radio button does not display checked 
when it should.

Example code:


     Number of Households:
     <input type="radio" name="sameasparent1" id="samesparent1" value="One"<?php
     if($findData['sameasparent1'][0] =="One") echo "checked";?>/>One

     <input type="radio" name="sameasparent1" id="sameasparent1" 
value="Two"<?php
     if($findData['sameasparent1'][0] =="Two") echo "checked";?>/>Two

Check boxes work fine.


Any suggestion?

Jonathan


More information about the FX.php_List mailing list