Lire la suite
PHP Shorthand if Statements
Short Hand If
To write shorter code, you can write if statements on one line....
PHP - $_SERVER
$_SERVER
$_SERVER is a PHP super global variable which holds information about headers,...
PHP Constants
Constants are like variables, except that once they are defined they cannot be changed or...
PHP foreach Loop
The foreach loop - Loops through a block of code for each element in an array or each...
PHP do while Loop
The do...while loop - Loops through a block of code once, and then repeats the loop as...