maliary Posted January 16, 2008 Share Posted January 16, 2008 Hi people, I have the following if....else statement $display=explode('&',$stored_request['material']); //This is an array $cnt=count($display); // This counts the number of array items //iterate through the array to get the array values foreach ($display as $x => $y) { if ($y=='_mx_tb_=1') // This is option 1 { $tb=''; } // Urine Culture and Urinalysis elseif ($y=='_mx_urin_=1' || $y=='_mx_urincul_=1') { $urine =''; } // Pleural Fluid elseif ($y=='_mx_pleural_=1') { $pleural =''; } elseif ($y=='_mx_earswab_=1') // This is option 2 { $earswab =''; } } // skin elseif ($y=='_mx_skinscrap_=1' || $y=='_mx_skinscrapcs_=1') { $skin =''; if ($y=='_mx_skinscrapcs_=1') { $skincs=''; } } } //Then I check the if the values are set //SECTION B if(isset ($tb)) // Part 1 { echo 'a'; } elseif (isset ($pleural)) //Part 2 { echo 'b'; } elseif (isset ($earswab)) // Part 3 { echo 'c'; } The Problem: If I have Option 1 and 2 as true in section b only Part 1 will show, part 3 is left out. Why is this happening? Quote Link to comment https://forums.phpfreaks.com/topic/86271-ifelse-statement/ Share on other sites More sharing options...
pdkv2 Posted January 16, 2008 Share Posted January 16, 2008 use if statements for every conditions instaid of elseif Quote Link to comment https://forums.phpfreaks.com/topic/86271-ifelse-statement/#findComment-440709 Share on other sites More sharing options...
priti Posted January 16, 2008 Share Posted January 16, 2008 Hi, because you are using if else.In if else if one condition become true then rest are left unchecked so if you have to check all condition use IF separately . regards Quote Link to comment https://forums.phpfreaks.com/topic/86271-ifelse-statement/#findComment-440726 Share on other sites More sharing options...
maliary Posted January 17, 2008 Author Share Posted January 17, 2008 Guys, Thanks ! Quote Link to comment https://forums.phpfreaks.com/topic/86271-ifelse-statement/#findComment-441691 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.