Music
No data to show
Read More
PHP Multiline Comments
Multi-line Comments
Multi-line comments start with /* and end with */.
Any text...
PHP - $_SERVER
$_SERVER
$_SERVER is a PHP super global variable which holds information about headers,...
PHP Nested if Statement
Nested If
You can have if statements inside if statements, this is...
PHP Update Array Items
Update Array Item
To update an existing array item, you can refer to the index number for...
PHP Continue
The continue statement can be used to jump out of the current iteration of a loop, and...