hi,
i have the following:
for some reason "three" is show for the following url:
i think i need to add another else or something because seems like it should be displaying "four". i just need something to handle cases in which the fac is empty or no value, as seen in my url here.
thanks in advance,
geebee
i have the following:
Code:
<?php
...
if(empty($_GET['SFT']) AND empty($_GET['fac']))
{
echo "one";
}
elseif(empty($_GET['SFT']) AND isset($_GET['fac']))
{
echo "two";
}
elseif(isset($_GET['SFT']) AND isset($_GET['fac']))
{
echo "three";
}
else
{
echo "four";
}
...
i think i need to add another else or something because seems like it should be displaying "four". i just need something to handle cases in which the fac is empty or no value, as seen in my url here.
thanks in advance,
geebee
Comment