$type = 'bravo';
if ($type === ('alpha' || 'bravo')) {
echo $type;
}
This never returns anything. Why this is happening?
$type = 'bravo';
if ($type === ('alpha' || 'bravo')) {
echo $type;
}
This never returns anything. Why this is happening?
Copyright © 2021 Jogjafile Inc.
Try this:
You have to check values individually.