Yeah, for buttons (radio/checkboxes) I had to put an if statement on 
each one:

       <td width="84%">
         <input type="radio" name="formatting" value="unformatted"
           <?
                if($format == "unformatted") echo "checked";
           ?>>
         unformatted
         <input type="radio" name="formatting" value="table"
           <?
                if($format == "table") echo "checked";
           ?>>

You're right... it's not as easy.

Steven J. Walker
Walker Effects
www.walkereffects.com
[EMAIL PROTECTED]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to