PHP - The if...else Statement The if...else statement executes some code if a condition is true and another code if that condition is false. Syntax if (condition) { code to ...
PART 17. PHP if condition Conditional statements are used to perform different actions based on different conditions. Very often when you write code, you want to perform different actions for ...
PART 16. PHP String Operators There are two string operators. The first is the concatenation operator ('.'), which returns the concatenation of its right and left arguments. The second is ...
In today's video, I will teach about PHP Logical Operators The PHP logical operators are used to combine conditional statements. SEE ALL VIDEOS ON THIS LINK t.ly/or7W source
PART 13. PHP Incrementing/Decrementing Operators PHP supports C-style pre- and post-increment and decrement operators. HINT: The increment/decrement operators only affect numbers and strings. Arrays, objects, booleans and resources are not ...
PART 12. PHP Operators - Identical Comparison Operator (===) The comparison operator called as the Identical operator is the triple equal sign “===”. This operator allows for a much stricter ...