Literature
No data to show
Read More
PHP Continue
The continue statement can be used to jump out of the current iteration of a loop, and...
PHP do while Loop
The do...while loop - Loops through a block of code once, and then repeats the loop as...
PHP Indexed Arrays
PHP Indexed Arrays
In indexed arrays each item has an index number.
By default, the first item...
PHP Access Arrays
Access Array Item
To access an array item, you can refer to the index number for indexed arrays,...
PHP foreach Loop
The foreach loop - Loops through a block of code for each element in an array or each...