This article will explain how to build dynamic web pages with PHP. PHP is a very popular and easy to learn script language. Regardless if you are starting to build your website, or if you are already a pro, just read on to learn more about dynamic web pages and PHP.
The quickest way to learn PHP is to start using it and see what happens. This tutorial starts by diving right into the good old "Hello World" script you may have seen when learning other languages. Then, it presents another example that writes a Tip of the Day on your Web page using file and random functions.
This article introduces you to php includes. Lets say you have a Web site with 10 or so pages, and you want to update the navigation. You don’t want the hassle of updating every single page. That’s where php includes come in handy.
This is an introductory tutorial for those who understand HTML but don't know much about PHP. It covers the basic concepts such as variables, form processing, arrays, if, loops, comparison and logical operators, functions, etc.
In this tutorial you will learn about PHP - Introduction to PHP, What you should already know? What’s PHP? What’s the difference between PHP and HTML? When to use PHP? What makes PHP a choice among the other scripting languages?
A beginning programmer's tutorial on what must happen and the order in which it must happen. An example from real life. (Programming language independent).
This elementary tutorial describes how to search an array to see if a specific item lies in it. In the tutorial, we create an array of strings such as "Apple" and "Orange" then show you how to use PHP to find out that "Apple" is in the array but "Monkey" is not. This can be useful in PHP programs if you have a collection of items (perhaps that a user has entered) and you want to know if a certain item is in that collection.