Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How To Specify Input Values for Radio Buttons
How To Specify Input Values for Radio Buttons? - PHP Script Tips - Processing Web Forms
✍: FYIcenter.com
Radio buttons can be used in a form for two situations:
The sample PHP script page below is a modified version of submit_comments.php that has one group of exclusive radio buttons named as "job" and single switch named as "rate":
<?php print("<html><form action=processing_forms.php method=post>"); print("<table><tr><td colspan=2>Please enter and submit your" ." comments about FYICenter.com:</td></tr>"); print("<tr><td>Your Name:</td>" ."<td><input type=text name=name></td></tr>\n"); print("<tr><td>Your Job Title:</td>" ."<td><input type=radio name=job value=dev>Developer " ."<input type=radio name=job value=sqa>QA Engineer " ."<input type=radio name=job value=dba>DBA " ."<input type=radio name=job value=other>Other " ."</td></tr>\n"); print("<tr><td>Like Site:</td>" ."<td><input type=radio name=rate></td></tr>\n"); print("<tr><td>Comments:</td>" ."<td><input type=text name=comment></td></tr>\n"); print("<tr><td colspan=2><input type=submit><td></tr></table>\n"); print("</form></html>\n"); ?>
If you submit the form with this page, you will get something like this:
Number of values: 4 name = Sue job = sqa rate = on comment = Will visit FYICenter.com again.
2007-04-23, 4827👍, 0💬
Popular Posts:
How can we implement singleton pattern in .NET? Singleton pattern mainly focuses on having one and o...
Can each Java object keep track of all the threads that want to exclusively access to it?
If client side validation is enabled in your Web page, does that mean server side code is not run? W...
How do I install JUnit? First I will download the lastest version of JUnit. Then I will extract all ...
What is the difference between CALL_FORM, NEW_FORM and OPEN_FORM? CALL_FORM: start a new form and pa...