i
PHP Variables
PHP Data Types
PHP Echo & Print
PHP Strings
PHP Numbers
PHP Constants
PHP Operators
PHP if...else...elseif Statements
Switch Statement
PHP Loops
PHP Arrays
Superglobals
PHP Coding Standards
PHP Form Handling
PHP Form Validation
PHP URLs Validation
PHP Form Required Validation
Complete Form Example
PHP File Functions Open/Read
PHP File Create/Write
PHP File Upload
PHP Cookies Handling
PHP Session Handling
PHP filter_var() Function
PHP Validation Filters
PHP Sanitization Filters
Using Filters
Filters Advanced
JSON
PHP Date and Time
MySQL Database
MySQL Connect
MySQL Commands-Creating a Table
MySQL Commands-Inserting The data
MySQL Commands-Prepared Statement
MySQL Commands-Selecting The Data
MySQL Commands-Where and Order By
MySQL Commands-Deleting And Updating The Data
PHP-OOP Introduction
PHP-Classes/Objects
PHP-Constructor/Destructor
PHP-Access Modifiers
PHP-Inheritance
PHP-Inheritance and Protected Access Modifier
PHP-Overriding Inherited Methods
PHP-Final keyword
PHP-Abstract Classes
PHP-Constants
PHP-Traits
PHP-Static Methods and Properties
Introduction to Functions
Defining A function
Returning Values From A Function
Dynamic Function Calls
Variable Scope
Understanding Arguments Or Parameters
Testing For A Function Existence
Returning Multiple Values From A Function
Making practical Use By Building Code Libraries For Code Re-usability
Using Include() And Require()
When you have multiple conditions to decide the code execution, then you can use switch statement. You get many blocks with a set of code to be executed based on the input given in the switch statement. The syntax for switch statement is below:
switch(expression input)
{
case label1:
code executed if expression input = label1;
break;
case label2:
code executed if expression input = label2;
break;
default:
code executed if none of the condition matches
}
For example, when you want to print the skill you are learning currently, you can create a variable as skill and add different blocks for various skills as below php code.
$skill = “php”;
switch($skill)
{
case “java”
echo “ You are currently learning Java”;
break;
case “php”
echo “You are currently learning PHP”;
break;
default:
echo” You are neither learning Java nor PHP”;
}
?>
You can add multiple cases as you want as there is no limit to the cases and use break statement to prevent the next case to run if the match is found.
Don't miss out!