PHP Basics: PHP OPERATORS

Operators in PHP are a useful way to use mathematics on variables. Whether you want to add, subtract, multiply, divide, or do any other mathematical equation involving a variable or…

PHP Basics: PHP SYNTAX

When starting out with PHP, the obvious, and most important thing you’ll need to know is how to designate the area where the server’s PHP parser will start reading your…

PHP Basics: PHP VARIABLES

Using variables in PHP is done in every single script, and is extremely basic PHP knowledge. If you have experience in any other programming languages, you’ll know that all languages…

PHP Basics: PHP ECHO

When learning PHP, most people get introduced to the PHP functions with the most basic of all functions — the echo() function. The echo() function tells PHP to echo things…