Your First PHP Script PHP / Getting Started
In this tutorial learn how to do a PHP script. Writing a PHP script is very simple. No special software is needed, except a text editor like Notepad in which the script is written.
PHP Script Tips - Manipulating Arrays with Built-in Functions PHP / Functions
A collection of 19 tips on PHP functions on arrays. Clear answers are provided with tutorial exercises on searching keys and values, sorting arrays, merging two arrays, looping on array elements, expanding and truncating arrays.
PHP Counter script tutorial PHP / Counters
Creates your own counter script. Using a basic knowledge of php + mysql script and keeps your visitors number to database for analysis.
PHP Photo Album script PHP / Dynamic Images
This is a PHP enhanced Photo Album script that automates the retrieval of all images within a specific directory to show, with links to cycle through each batch of images. It's based on the original Photo Album script, though uses PHP to automatically populate the script with all images within a directory.
PHP Basics PHP / Getting Started
In this tutorial, i will teach you how to make a basic php program.. Mainly how to print output from a php script... I hope you will enjoy using PHP as much as i have, and that you will NEVER use ASP again (if you ever have).
Using PHP to search a MySQL database and return paged results PHP / Searching
PHP, MySQL and a Web Server capable of parsing PHP pages, like Apache or IIS. This search script does not spider all your pages by crawling the links, so the content you want to be searchable must be within the database. Knowledge of PHP and MySQL is also necessary because this script is just the bones of a working solution.
Restricting External Access to .PHP Files PHP / Security
Sometimes, when you are writing your PHP script, you'll write Classes and Functions that you will use in your script in external files so that they might be included( ) or required( ) at any time. The same could be said about configuration files - You have certain settings in the form of variables in a external configuration file that you load in the different pages of your script so that they might be shared and edited with ease.
Scripting a Dynamic PHP Copyright PHP / Getting Started
The date is fairly specific in how it is scripted. you can single out the year and use the PHP script for year to script a dynamic date so you won't have to update at the end of each year. All you do is set the starting date, apply the script!
Creating a Secure PHP Login Script PHP / Membership
Explains how to create a secure PHP login script that will allow safe authentication. Features remember-me function using cookies, validates logins on each request to prevent session stealing.
Swap Images and Text with PHP PHP / Dynamic Images
As you can see, you can change the name of the models, and also the pictures without leaving the page. This is done using a simple PHP script that will carry GET parameters as part of the URL. The script will use these parameters to decide what name and what picture will appear on the page each time it is loaded.