PHP 101: Echo - The command that inserts text
The echo command in PHP is one of the fundamental building blocks that’s used all the time. Mastering it’s use is something you want to as soon as you start to learn PHP.
Read More...The echo command in PHP is one of the fundamental building blocks that’s used all the time. Mastering it’s use is something you want to as soon as you start to learn PHP.
Read More...PHP includes are one of the first things anyone using PHP uses. And they’re used in almost all professionally built sites. This post explains how they work and some of the tricks to use them effectively.
Read More...Apache, the web server software that runs most web sites, provides the developer with basic information about the page request via what are called “environment variables”. This post explains how to access Apache environment variables using PHP, and some tricks to use them effectively.
Read More...A basic introduction to variables in PHP. This post covers how to set the value of a variable, the difference between numeric and textual variables, and some other PHP basics about functions and statements.
Read More...