pommi Posted November 19, 2008 Share Posted November 19, 2008 Hi Guys.... this will probably be an easy question. Can you use swtich statements within an if statement... So for example what i want to do it if(!empty($aa)) { switch($aa) { case: 1 break; case 2: break; } else switch($bb) { case:1 break; case: 2 break; } } I have writen some code in this format and it isnt working?? Can anyone help... Thanks ??? Quote Link to comment https://forums.phpfreaks.com/topic/133416-switch-statements/ Share on other sites More sharing options...
ratcateme Posted November 19, 2008 Share Posted November 19, 2008 you have just got your braces mixed up try adding a } and { ether side of the else Scott. Quote Link to comment https://forums.phpfreaks.com/topic/133416-switch-statements/#findComment-693900 Share on other sites More sharing options...
DarkWater Posted November 19, 2008 Share Posted November 19, 2008 You're missing a slew of braces. Proper indentation works wonder: if (!empty($aa)) { switch ($aa) { case 1: break; case 2: break; } } else { switch ($bb) { case 1: break; case 2: break; } } In reading your code, I also noticed a huge syntax error. You need to put the : in the case statement AFTER the value. case 1:, etc. Quote Link to comment https://forums.phpfreaks.com/topic/133416-switch-statements/#findComment-693901 Share on other sites More sharing options...
redarrow Posted November 19, 2008 Share Posted November 19, 2008 example only......... <?php $aa="1"; if(empty($aa)) { switch($aa){ case "1" : break; case "2" : break; } }else{ switch($aa){ case "1" : echo "hi redarrow"; break; case "2" : break; } } ?> ur way........... <?php $aa="1"; if(!empty($aa)) { switch($aa){ case 1 : echo "hi redarrow"; break; case 2 : break; } }else{ switch($aa){ case 1 : break; case 2 : break; } } ?> Quote Link to comment https://forums.phpfreaks.com/topic/133416-switch-statements/#findComment-693907 Share on other sites More sharing options...
DarkWater Posted November 19, 2008 Share Posted November 19, 2008 @redarrow: You completely jumbled his code; it won't do anything even similar to what he wanted. Quote Link to comment https://forums.phpfreaks.com/topic/133416-switch-statements/#findComment-693910 Share on other sites More sharing options...
redarrow Posted November 19, 2008 Share Posted November 19, 2008 what u wanted sorry......... <?php $aa="1"; $bb="2"; if(!empty($aa)) { switch($aa){ case 1 : echo "hi redarrow first condition true"; break; case 2 : break; } }else{ switch($bb){ case 1 : break; case 2 : echo "hi redarrow second condition true"; break; } } ?> Quote Link to comment https://forums.phpfreaks.com/topic/133416-switch-statements/#findComment-693913 Share on other sites More sharing options...
pommi Posted November 19, 2008 Author Share Posted November 19, 2008 Thanks guys... to answer my question I assume I can add a switch within an If statement. The problem though is within my coding... Thanks!! Quote Link to comment https://forums.phpfreaks.com/topic/133416-switch-statements/#findComment-693923 Share on other sites More sharing options...
DarkWater Posted November 19, 2008 Share Posted November 19, 2008 Thanks guys... to answer my question I assume I can add a switch within an If statement. The problem though is within my coding... Thanks!! if/else/any other control statement just denote blocks that are only executed during certain conditions; they can contain any statements that the main program flow can. Quote Link to comment https://forums.phpfreaks.com/topic/133416-switch-statements/#findComment-693928 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.