Dashboard Temp Share Shortlinks Frames API

HTMLify

Switch-Case.php
Views: 618 | Author: djdj
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
<?php
    $age = 30;
    switch($age){
        case 18:
            echo "You are eligible for vote\n";
            break;
        case 12:
            echo "your age is 12\n";
            break;
        case 30:
            echo "Your age is 30\n";
            break;
        default:
            echo "Enter a number\n";
    }
?>