PHP Tutorials
Generate Random Quotes with PHP
The following will show you how to generate simple random quotes using PHP.
The following will show you how to generate simple random quotes using PHP.
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.
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.
Creating an Image Gallery with PHP
This tutorial will show you how to make a basic image gallery using PHP.
This tutorial will show you how to make a basic image gallery using PHP.
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.
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.
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.
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.
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.
In this section we will show you the basics of making and creating a simple drop down selection array.
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.
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.
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.
This image convertor uses features to automatically change a normal image to a smaller thumbnailed version of that image.
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...
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...
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.
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.
