The main focus of this lesson is to describe the introduction of programming with PHP.
PHP installation phase has been explained with proper instructions.
PHP Startup Introduction.
This lesson describes how PHP works and how to use a php.ini file.
This lesson has a detailed description of PHP Syntax. It's essential for you to before proceeding to learn more advanced lessons in PHP.
This lesson describes PHP Data Types and converting between Data Types.
This lesson describes rules for naming variables and Variable Variables.
This lesson describes how to create and use PHP constants.
This lesson describes about PHP Arithmetic Operators, Assignment Operators, Comparison Operators, Logical Operators and Concatenation Operators.
When coding, we always look for shortcuts everywhere or try to make things concise and effective. In PHP and other programming languages, the ternary operator is a concise way to write conditional statements that improve code readability and effectiveness. You […]
This lesson describes about PHP if else statement, elseif statement and switch statement.
The loop is used to re-execute a block of code until the specified condition is met. Sometimes loops are beneficial for developers to save the time and effort of writing similar code. In this tutorial, you will learn what are loops in PHP and why they are important.
This lesson shows how to collect submitted form-data from users using POST and GET method.
This lesson describes how to validate HTML form inputs by using PHP server side validation technique.
This lesson describes how to upload the file into the server by using PHP.
This lesson describes about PHP Numeric array (Indexed array), Associative array and Multidimensional array.