dennis99
01-18-2005, 12:20 PM
How do I do an option button and capture the results? Like a yes or no thing. thanks
|
Click to See Complete Forum and Search --> : Option button dennis99 01-18-2005, 12:20 PM How do I do an option button and capture the results? Like a yes or no thing. thanks NogDog 01-18-2005, 01:47 PM If you mean something like a yes/no radio button, in your input form you would have something like: <input type=radio name=choice value="yes">Yes <input type=radio name=choice value="no" checked>No In your PHP form handler, you would then get the user's choice from the $_POST['choice'] variable, which in this case would either equal "yes" or "no". webdeveloper.com
Copyright Internet.com Inc., All Rights Reserved. |