Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,890 questions

51,821 answers

573 users

How to use switch case (multiple-choice selection) in PHP

3 Answers

0 votes
$s = "php";

switch ($s) 
{
    case "c":
        echo "c programming";
        break;
    case "php":
        echo "php programming";
        break;
    case "c++":
        echo "c++ programming";
        break;
    default:
        echo "other programming language";
}


/*
run:

php programming 

*/

 



answered Nov 11, 2015 by avibootz
0 votes
$n = 10;

switch ($n) 
{
    case 3:
        echo "333";
        break;
    case 10:
        echo "101010";
        break;
    case 2:
        echo "222";
        break;
    default:
        echo "other number";
}


/*
run:

101010  

*/

 



answered Nov 11, 2015 by avibootz
edited Nov 12, 2015 by avibootz
0 votes
$n = 10;
 
// switch without break 
 
switch ($n) 
{
    case 3:
        echo "333 <br />";
        //break;
    case 10:
        echo "101010 <br />";
        //break;
    case 2:
        echo "222 <br />";
        //break;
    default:
        echo "other number <br />";
}
 
 
/*
run:
 
101010 
222 
other number  
 
*/

 



answered Nov 14, 2015 by avibootz

Related questions

5 answers 425 views
4 answers 310 views
1 answer 154 views
8 answers 552 views
552 views asked Jun 3, 2016 by avibootz
1 answer 134 views
...