Tools, FAQ, Tutorials:
Specifying Input Values for Radio Buttons in PHP
How To Specify Input Values for Radio Buttons in PHP?
✍: 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.
⇒ Specifying Input Values for Checkboxes in PHP
2016-11-13, 1772🔥, 0💬
Popular Posts:
Where to find EPUB Sample Files? Here is a list of EPUB sample files collected by FYIcenter.com team...
How To Pad an Array with the Same Value Multiple Times in PHP? If you want to add the same value mul...
How To Change Text Fonts for Some Parts of a Paragraph? If you want to change text fonts or colors f...
How to start Docker Daemon, "dockerd", on CentOS systems? If you have installed Docker on your CentO...
How to create the Hello-3.0.epub package? I have all required files to create Hello-3.0.epub. To cre...