Forum Moderators: coopster
How can I get that to work?
P.S. I haven't tried checkboxes, but I'm assuming that they may be similar in their problems. Any solution for that too?
Thanks,
Travis
<input type="radio" name="category" value="bugs" [b]checked[/b]>
Good luck!
<input type="radio" name="radiotime" value="parttime" <?php echo ($_POST['radiotime'] == "parttime")? "checked":"";?> >
This utilizes the ternary operator [us3.php.net].
I hope this helps!
>>I should have thought of that
Don't be too hard on yourself, we are all here to learn! The important thing is now you understand how it works, and you'll be able to use these skills in the future.