if statement && not working php code example
Example: if not php
$a = true;
if(!$a) {
echo "False"; // Will return this
} else {
echo "True";
}
$a = true;
if(!$a) {
echo "False"; // Will return this
} else {
echo "True";
}