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 tag is used to add lists into <ul> and <ol> elements?
<dt> <dd> <li>
<ul>
 <li>http://coursesweb.net/html/</li>
 <li>http://coursesweb.net/css/</li>
</ul>
Which value of the "display" property creates a block box for the content and ads a bullet marker?
block list-item inline-block
.some_class {
  display: list-item;
}
Which instruction converts a JavaScript object into a JSON string.
JSON.parse() JSON.stringify eval()
var obj = {
 "courses": ["php", "javascript", "ajax"]
};
var jsonstr = JSON.stringify(obj);
alert(jsonstr);    // {"courses":["php","javascript","ajax"]}
Indicate the PHP class used to work with HTML and XML content in PHP.
stdClass PDO DOMDocument
$strhtml = '<body><div id="dv1">CoursesWeb.net</div></body>';
$dochtml = new DOMDocument();
$dochtml->loadHTML($strhtml);
$elm = $dochtml->getElementById("dv1");
echo $elm->nodeValue;    // CoursesWeb.net
PHP Switch Case

Last accessed pages

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (141749)
  2. Node.js Move and Copy file (28420)
  3. MouseEvent - Events for Mouse (2909)
  4. PHPMailer (2311)
  5. Uploading images to server with Ajax (6095)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (473)
  2. CSS cursor property - Custom Cursors (79)
  3. The Mastery of Love (70)
  4. PHP-MySQL free course, online tutorials PHP MySQL code (62)
  5. CSS3 2D transforms (46)