Lire la suite
PHP while Loop
The while loop - Loops through a block of code as long as the specified condition is...
PHP Continue
The continue statement can be used to jump out of the current iteration of a loop, and...
PHP Add Array Items
Add Array Item
To add items to an existing array, you can use the bracket [] syntax....
PHP Operators
PHP Operators
Operators are used to perform operations on variables and values.
PHP divides the...
PHP Nested if Statement
Nested If
You can have if statements inside if statements, this is...