Literature
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 Variables Scope
PHP Variables Scope
In PHP, variables can be declared anywhere in the script.
The scope of a...
PHP Nested if Statement
Nested If
You can have if statements inside if statements, this is...
PHP Comments
Comments in PHP
A comment in PHP code is a line that is not executed as a part of the program....
PHP echo and print Statements
With PHP, there are two basic ways to get output: echo and print.
In this...