PHP Tutorials
Generate Random Quotes with PHP
The following will show you how to generate simple random quotes using PHP.
Monday, 28th November 2005
The following will show you how to generate simple random quotes using PHP.
Monday, 28th November 2005
Displaying Load Time with PHP
When developing PHP-driven websites its often very useful to know how long your pages took to process. This not only gives you some idea of the efficiency of your websites and of the server running them, but may help you diagnose problems, benchmark code corrections/additions, etc.
Wednesday, 23rd November 2005
When developing PHP-driven websites its often very useful to know how long your pages took to process. This not only gives you some idea of the efficiency of your websites and of the server running them, but may help you diagnose problems, benchmark code corrections/additions, etc.
Wednesday, 23rd November 2005
Creating an Image Gallery with PHP
This tutorial will show you how to make a basic image gallery using PHP.
Monday, 21st November 2005
This tutorial will show you how to make a basic image gallery using PHP.
Monday, 21st November 2005
Creating a PHP Looping Statement
Creating a PHP loop to go through a certain part of code to gather more information than just a single part of data is essential to many programmers. These methods are used for searching iside a database, counting through information, and other useful functions. Here are some simple ways that you can create a while lopp in PHP.
Monday, 21st November 2005
Creating a PHP loop to go through a certain part of code to gather more information than just a single part of data is essential to many programmers. These methods are used for searching iside a database, counting through information, and other useful functions. Here are some simple ways that you can create a while lopp in PHP.
Monday, 21st November 2005
Creating a PHP Form
Extracting form variables when programming in Perl is a real task. The variables can be extracted fairly painlessly using the CGI.pm modules, but there is a lot of work going on under the hood. In PHP form variables just spring to life. If a form has an input statement.
Monday, 21st November 2005
Extracting form variables when programming in Perl is a real task. The variables can be extracted fairly painlessly using the CGI.pm modules, but there is a lot of work going on under the hood. In PHP form variables just spring to life. If a form has an input statement.
Monday, 21st November 2005
Creating a Drop Down Selection with an Array
In this section we will show you the basics of making and creating a simple drop down selection array.
Thursday, 10th November 2005
In this section we will show you the basics of making and creating a simple drop down selection array.
Thursday, 10th November 2005
Create and Use a User Input Form
So how do you access the information you submitted via HTML in the script (script.php)? Well amazingly, there are several ways to get the information. It's up to you to decide which method best suites you, and then go with that.
Monday, 7th November 2005
So how do you access the information you submitted via HTML in the script (script.php)? Well amazingly, there are several ways to get the information. It's up to you to decide which method best suites you, and then go with that.
Monday, 7th November 2005
Convert Images to Thumbnails Images Using PHP
This image convertor uses features to automatically change a normal image to a smaller thumbnailed version of that image.
Monday, 7th November 2005
This image convertor uses features to automatically change a normal image to a smaller thumbnailed version of that image.
Monday, 7th November 2005
Control Structures and While Loops
In this lesson we discussed the "foreach" loop which in my opinion is the simplest type of loop. A lot of people seem to agree though that the "while" loop is one of the easiest. The difference between the "foreach" loop and the "while" loop is...
Monday, 7th November 2005
In this lesson we discussed the "foreach" loop which in my opinion is the simplest type of loop. A lot of people seem to agree though that the "while" loop is one of the easiest. The difference between the "foreach" loop and the "while" loop is...
Monday, 7th November 2005
Basic Control Structures in PHP
This article covers the basics of program control structures, including conditional statements and looping using the if and while statements in PHP. It also contains a brief note regarding embedding code blocks within other code blocks.
Monday, 7th November 2005
This article covers the basics of program control structures, including conditional statements and looping using the if and while statements in PHP. It also contains a brief note regarding embedding code blocks within other code blocks.
Monday, 7th November 2005
