Php-mysql Course

Switch is another type of conditional, best used in place of a long if-elseif-else conditional.
Switch statement selects one of many blocks of code to be executed, by comparing the value of a single variable with a succession of values.

  - Syntax:
switch ($variable) {
  case 'value1':
    // Do this
    break;
  case 'value2':
    // Run other code
    break;
  default:
    // if nothing else is true, do this
}
- The value of the $variable within the brackets is the item being tested.
- The switch conditional compares the value of $variable with the values for each case. When it finds a match, the block of code associated with that case is executed, up until the break. If no match is found, the default statement is executed, assuming it exists (it's optional).
The switch conditional can only check a variable's value for equality.

The break statements are optional, but if you don't use them, PHP will continue to evaluate the next case and may execute some code further down the case tree.
The default statement is used if no match is found.


- Example:
<?php
$num = 2;

switch($num) {
  case 1:
    echo 'Small number';
    break;
  case 2:
    echo 'Medium number';
    break;
  case 3:
    echo 'Bigger number';
    break;
  default:
    echo 'No number between 1 and 3';
}
?>
This code will output: "Medium number".

• Another example, with a string as the value to be compared.
<?php
switch($today) {
  case 'Monday':
    echo 'Today is Monday, I go to school.';
    break;
  case 'Tuesday':
    echo 'Tuesday, lot of work to do.';
    break;
  case 'Sunday':
    echo 'Sunday, good day for rest.';
    break;
  default:
    echo 'A normal day';
}
?>

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which attribute specifies the HTTP method (GET, POST) used to submit the form-data?
action method value
<form action="script.php" method="post"> ... </form>
Which CSS property allows to add shadow to boxes?
background-image box-shadow border-radius
#id {
  background-color: #bbfeda;
  box-shadow: 11px 11px 5px #7878da;
}
Which function removes the first element from an array?
pop() push() shift()
var fruits = ["apple", "apricot", "banana"];
fruits.shift();
alert(fruits.length);           // 2
Indicate the function that can be used to check if a PHP extension is instaled.
function() filetype() extension_loaded()
if(extension_loaded("PDO") === true) echo "PDO is available."
PHP Switch Case

Last accessed pages

  1. CSS Trapezoid Shape (11425)
  2. Writings for My Brother (456)
  3. Create simple Website with PHP (44156)
  4. Writing PHP scripts (11229)
  5. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (143672)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (120)
  2. CSS cursor property - Custom Cursors (13)
  3. PHP Unzipper - Extract Zip, Rar Archives (13)
  4. PHP-MySQL free course, online tutorials PHP MySQL code (12)
  5. JavaScript trim, rtrim and ltrim (11)