Hi All,
I feel silly asking this, but my three-tiered "elseif" statement isn't functioning properly. I can get results for the first two tiers, but on the last, it bombs.
Here is a snippet of my code:
<?
$ID = $HTTP_GET_VARS['ID'];
if (!$ID){
Show Text One
}
elseif($ID !=0){
Show Text Two
}
elseif($ID == 0){ <---- failing here
Show Text Three
}
On the third option, I am always viewing "Show Text One"
Any assistance will be tremendously appreciated!!
Geogal
🙂