A simple way to get the checkbox value in php_php tips

WBOY
Release: 2016-05-16 19:52:27
Original
1234 people have browsed it

The example in this article describes how to simply obtain the check box value in PHP. Share it with everyone for your reference, the details are as follows:

html:

<form id="form1" name="form1" method="post" action="checkbox.php">
<input type=checkbox name=checkbox[] value="1">
<input type=checkbox name=checkbox[] value="2">
<input type=checkbox name=checkbox[] value="3">
<input type=checkbox name=checkbox[] value="4">
<input type=checkbox name=checkbox[] value="5">
<input type="submit" name="button" id="checkbox" value="提交" />
</form>

Copy after login

php:

<&#63;php
$text1=$_POST['checkbox'];
for($i=0;$i<count($text1);$i++)
{
$yourwant = $text1[$i]; 
echo $yourwant."<br/>";
}
&#63;>

Copy after login

Readers who are interested in more PHP-related content can check out the special topics on this site: "Summary of PHP socket usage", "Summary of PHP network programming skills", " Summary of php curl usage", "Comprehensive collection of PHP array (Array) operation skills", "PHP data structure and algorithm tutorial", "Summary of PHP mathematical operation skills ", "php date and time usage summary", "php object-oriented programming introductory tutorial", "php string (string) usage summary》, "php mysql database operation introductory tutorial" and "php common database operation skills summary"

I hope this article will be helpful to everyone in PHP programming.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!