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…

PHP Basics: PHP INCLUDES

PHP’s inclusion functions are very useful for keeping your script neat and tidy. Using the PHP include() function, we can include remote files on one page. In fact, this very…

PHP Basics: PHP ARRAYS

Arrays are an excellent way to use a single variable to hold multiple strands of related information. If you have a multiple strands of related information that you’d like to…

PHP Basics: PHP WHILE LOOP

Loops are another important factor in PHP and all programming languages. They can be used for a multitude of different things, including but not limited to skipping through arrays, searching…