Sports
No data to show
Read More
PHP - Escape Characters
Escape Character
To insert characters that are illegal in a string, use an escape character.
An...
PHP echo and print Statements
With PHP, there are two basic ways to get output: echo and print.
In this...
PHP Add Array Items
Add Array Item
To add items to an existing array, you can use the bracket [] syntax....
PHP do while Loop
The do...while loop - Loops through a block of code once, and then repeats the loop as...
PHP Continue
The continue statement can be used to jump out of the current iteration of a loop, and...