NET php
- Introduction
A brief introduction to the tutorial and what you can expect to learn. - Lesson 1: What is PHP
A little on how PHP works, what it means that PHP is a server-side technology, and what you will learn in the next lessons. - Lesson 2: Servers
We look at different options to run PHP on your own computer or on a web host. - Lesson 3: Your first PHP page
In this lesson, you create your first very simple PHP page. Here, you can also test whether your server is set up properly to run PHP. - Lesson 4: Working with time and dates
Introduction to functions that can be used in work with time and dates. - Lesson 5: Loops
Loops can repeat parts of a script. In this lesson, we look at loops such as while and for. - Lesson 6: Conditions
Conditions can be used to control the execution of a PHP script. We look at if ... elseif ... else... and switch ... case. - Lesson 7: Comment your scripts
Comments make your PHP scripts more clear and easier to understand. Comments can be a great help if you or someone else needs to make changes in your codes at later stage. - Lesson 8: Arrays
In this lesson, you will learn what an array is, how it is used, and what it can do. - Lesson 9: Functions
In previous lessons, you have learned to use different, built-in functions. Now you will learn how to create your own functions. - Lesson 10: Passing variables in a URL
Learn how to pass variables and values from one page to another using the HTTP query string.