php if isset checkbox code example
Example 1: php check if checkbox isset
<?php
if(isset($_POST['checkbox']) {
// runs if checkbox is checked
} else {
// runs if checkbox is not checked
}
Example 2: php if isset
if (isset(true)) {
}
<?php
if(isset($_POST['checkbox']) {
// runs if checkbox is checked
} else {
// runs if checkbox is not checked
}
if (isset(true)) {
}