Example of using php to verify checkbox validity_PHP Tutorial

WBOY
Release: 2016-07-13 10:25:09
Original
812 people have browsed it

The php code to verify the checkbox is as follows:

Copy code The code is as follows:
/**
* Verify checkbox validity in php
*/
$value = 'yes';
echo " Verify data";

if (isset($_POST['subscribe' ])) {
if ($_POST['subscribe'] == $value) {
$subscribed = true;
} else {
$subscribed = false;
print 'Submit The checkbox value for is invalid. ';
}
} else {
$subscribed = false;
}

if ($subscribed) {
print 'Verification valid! ';
} else {
print 'Verification invalid! ';
}

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/825165.htmlTechArticleVerify the php code of the check box as follows: Copy the code as follows: ?php /*** Verify checkbox validity in php* / $value = 'yes'; echo "input type='checkbox' name='subscribe' v...
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!