I have an elseif statement, I’m confuse why is not working?
This my script
if(isset($namasupexp))
{
$supexp = $namasupexp; //condition 1
echo $supexp;
}
elseif(isset($namasupexp2))
{
$supexp = $namasupexp2; //condition 2 is not work, or ignore
echo $supexp;
}//end if
Why Only in condition1 is work, and other condition not work?
Can anyone tell me the solution or my misatake?
I really appreciate your answer. Thanks
If you want both to be checked do,