Home  >  Article  >  Backend Development  >  使用php验证复选框有效性的示例_php实例

使用php验证复选框有效性的示例_php实例

WBOY
WBOYOriginal
2016-05-17 08:52:46946browse

验证复选框的php代码,如下:

复制代码 代码如下:
/** 
* 在php中验证复选框的有效性 
*/
$value = 'yes'; 
echo " 验证数据"; 

if (isset($_POST['subscribe'])) { 
    if ($_POST['subscribe'] == $value) { 
        $subscribed = true; 
    } else { 
        $subscribed = false; 
        print '提交的复选框值无效。'; 
    } 
} else { 
    $subscribed = false; 


if ($subscribed) { 
    print '验证有效!'; 
} else { 
    print '验证无效!'; 
}
Statement:
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