$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?
Try this:
You have to check values individually.