Validating check box validation instance code using PHP

Source: Internet
Author: User
check box checkbox is often used in PHP form submission, this article through an example to tell you how PHP determines whether the value of check box checkbox is selected, the need for friends can refer to the example of this article.

This article introduces you to two points of knowledge:

  • PHP form submission How to get the value of check box checkbox

  • How PHP determines if the value in a check box checkbox is selected

Let's take a look at the code.

<?php  /**  * Verify the validity of the check box in PHP */  $value = ' yes ';  echo "<input type= ' checkbox ' name= ' subscribe ' value= ' yes '/> Verify data";  if (Isset ($_post[' subscribe ')) {      if ($_post[' subscribe '] = = $value) {          $subscribed = true;      } else {          $ subscribed = false;          print ' submitted check box value is invalid. ';      }  } else {      $subscribed = false;  }  if ($subscribed) {      print ' validation is valid! ';  } else {      print ' validation is not valid! ';  }

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.