PHP Sessions
Learn all about PHP session-why, how, where to create it, access it, and destroy it.
Teach Yourself Web Development and Web Designing Step by Step With Easy Explanation
PHP beginner is for an individual or a web designer who has no experience or has a little experience in programming and wants to learn coding in PHP. Beginners will learn step by step and will find why’s and how’s of different topics of the language.
PHP Introduction
Introduction to PHP: Start learning PHP step by step here.
|
||
PHP Installation
Know all about PHP instalation. Where to download PHP? Install PHP in easy way. Test your installation. Locate your PHP files, Secure your server.
|
||
PHP Basic Syntax
Get familiar with the PHP basic syntax, the set of basic rules that define the combinations of symbols that are considered to be correctly structured programs.
|
||
PHP Variables
Variable is a memorable name of computer memory cell(s) that can hold a value during the execution of the program and the value may change.
|
||
PHP Data Type
In programming, data type is the name of a group of data that has a predefined common set of characteristics.
|
||
PHP Constants
If a variable is meant to be contain a value that may change, then, a constant is meant to be contain a value that never change.
|
||
PHP Strings
In programming languages, a string is a data type that represent a sequence of characters.
|
||
PHP Arrays
An array in php is an ordered map that associates values to keys.
|
||
PHP Operators – Part1
Operators in programming languages are symbols that help to perform different types of tasks like arithmetical, logical, relational etc
|
||
PHP Operators – Part2
Part 2: Operators in programming languages are symbols that help to perform different types of tasks like arithmetical, logical, relational etc
|
||
PHP Conditional Statements
PHP conditionals are the central to the dynamic web applications. PHP conditional statements can alter the flow of the program.
|
||
PHP Loops
Loop allows us to execute a statement or a group of statements a number of times until it fulfills a condition.
|
||
PHP File-Inclusion
|
||
PHP Functions
|
||
PHP Variable Scope
|
||
PHP Forms – Part1 | ||
PHP Forms – Part2 | ||
PHP Forms – Part3 |
The course consists of number of lessons.
At the end of each lesson, there is a way to ask questions or add comments. You’re expected to use this section with clear and descriptive manner to get perfect reply. Feel free to use this section.
Next Lesson : PHP Introduction>> |
Learn all about PHP session-why, how, where to create it, access it, and destroy it.
What is a multidimensional array? In the PHP Arrays lesson, you’ve learnt that each key/index of an array can contain only one value – a number or a string. Well, instead of a single value, a key may contain another Read more
This is the part 3 of the PHP form. If you didn’t read the previous lessons, please read the previous ones- 1. PHP Forms Part1 2. PHP Forms Part2
This is the part 2 of the PHP form. If you didn’t read the previous lesson, please read the previous one at first.
The part of a script where a variable is accessible after it is declared is its scope. Not always a variable could be accessed after it’s been declared in the remaining part of the script. The location of declaration determines Read more
Why function is necessary? In your project, sometimes you need to perform same task multiple times. Therefore, you need to write the same code every time it requires. It makes programming time consuming, boring, and tedious. To make development easier, Read more