|
Posted by dorayme on 05/15/07 22:43
In article <42q2i.30526$cu1.27479@trnddc01>,
bfc@fenway.UUCP (Time Waster) wrote:
> I want to present a series of rows with 2 choices on each, only
> one of which can be selected. Radio button, i guess. But i
> *don't* want either choice to be preselected. Gee, that sounds
> like a simple problem ... and one I've seen solved before.
>
> Tips?
Don't have "checked". What about something like this or in a
table:
<form method="post" action="http://www.etc"
enctype="multipart/form-data">
<div>
<input type="hidden" name="env_report"
value="REMOTE_HOST,REMOTE_ADDR,HTTP_USER_AGENT,AUTH_TYPE,REMOTE_US
ER">
<input type="hidden" name="recipients" value="">
<input type="hidden" name="required" value="email:Your email
address,realname:Your name">
</div>
<div>
Choose one of each:
<ul style="list-style-type: none">
<li><input type="radio" name="" value="" >phrase
<input type="radio" name="" value="">phrase</li>
<li><input type="radio" name="" value="" >phrase
<input type="radio" name="" value="">phrase</li>
<li><input type="radio" name="" value="" >phrase
<input type="radio" name="" value="">phrase</li>
</ul>
<input type="submit" value="Submit">
</div>
</form>
--
dorayme
Navigation:
[Reply to this message]
|