Fitness
No data to show
Read More
PHP do while Loop
The do...while loop - Loops through a block of code once, and then repeats the loop as...
PHP Strings
A string is a sequence of characters, like "Hello world!".
Strings
Strings in PHP are...
PHP - Escape Characters
Escape Character
To insert characters that are illegal in a string, use an escape character.
An...
PHP Continue
The continue statement can be used to jump out of the current iteration of a loop, and...
PHP echo and print Statements
With PHP, there are two basic ways to get output: echo and print.
In this...