^ An Image Verification Tutorial by Darryl Porter Language: PHP
Ever logged onto Yahoo! or here on Planet Source Code and have run across the verification image containing numbers and leters that you must plug into a form for verification? Learn to do it.
|
Page Load Time by Steve Gricci Language: PHP
This small script will let you output how much time (in seconds) it took for the page to expell. i.e. 0.501 seconds
|
PHP 101 by Josh Sherman Language: PHP
Get your feet wet with one of the hottest web languages around, PHP!
|
Classes in PHP by Dustin R Davis Language: PHP
This tutorial will walk you step by step on how to create and manage classes in PHP.
|
PHP4/MySQL User Auth by 1123454564654564 Language: PHP
This is a Username And Password Login for a website written in PHP4 and html uses mySQL to store user information and to validate usernames and passwords. Sorry for the .doc format here it is in .txt
|
Thumbnails in PHP by Michael Bailey Language: PHP
Learn how to use the PHP GD extension to create thumbnails from your normal images on the fly.
|
Using $HTTP_POST_VARS and $HTTP_GET_VARS by Charles Chadwick Language: PHP
This describes how to use while(), list() and each() in conjunction with the predefined PHP variables $HTTP_POST_VARS and $HTTP_GET_VARS to read information passed to a page without knowing the variable names, or how many variables were passed.
|
Sessions by Michael 'plasma' McMullen Language: PHP
This will show you directly how to use session and make them more secure. This will also show you how to destroy your session totally (delete it from the server)
And every line is fully commented.
|
Proper Indentation by Steve Oliver Language: PHP
Teaches the basics of Proper Indentation in your php source.
|
^ A time Saver Script by Darryl Porter Language: PHP
In the latest version of PHP, you must use GET and POST arrays to pass variables--That's not bad--you just write $foo=$_GET["foo']; and you use $foo--But say you have 80 variable to declare--then it gets time consuming. This will cut the time to nothing.
|
|
PHP: Forms and Email by Josh Sherman Language: PHP
PHP, Forms, EMail, OH MY! Learn how to use all 3 of them together.
|
A Tutorial on Porting MySQL code to other Databases using ADODB by John Lim Language: PHP
In PHP every database is accessed slightly differently. To connect to MySQL, you would use mysql_connect(); when you decide to upgrade to Oracle or Microsoft SQL Server, you would use ocilogon() or mssql_connect() respectively. What is worse is that the parameters you use for the different connect functions are different also..
That is why a database wrapper library such as ADODB comes in handy when you need to ensure portability. It provides you with a common API to communicate wi ... (see entry for full description)
|
PHP Working under Linux accessing MS SQL server Database by Jorge Alberto Osorio M. Language: PHP
Hello this is a way to connect a PHP working under linux accessing to MS SQL Server Database, I Hope this will be useful for you, Please Id like a vote from you.
If you have any doubt about this code, please write me!!!
|
PHP IN HTML by G.Ajaykumar Language: PHP
PHP IN HTML
This Article , will let you know how to include a php file inside a html file ,
using inline floating frames.
|
Using PHP to create JavaScript Validation on the fly. by Stuart Cochrane Language: PHP
Here is a tutorial on how to use PHP to generate JavaScript form validation. In this tutorial we will make use of PHP Classes (OO). We will give our PHP Validation Class 3 types validation; Not Empty, Alphanumerical Only and Numerical Only. The idea is to have PHP create javascript validation for you forms.
Please see the attached zip file as the tutorial contains code references (PSC does not allow this to be posted directly). The zip file contains 1 file named tutorial.htm.
Please ... (see entry for full description)
|
|
Access your Outlook Application using PHP v2.1 by Bogomil Shopov Language: PHP
I have always been surprised from what PHP can do.Using COM objects shows new and best ways for PHP development. The folowing code, which is designed like Step by Step wizard, shows the access to Inbox and Outbox folders in your MS Outlook application.
The .zip file contains .html file with pictures (screenshots)and .rtf copy of the article.
|
Creating ZIP Files on the Spot by Christian Mallette Language: PHP
This interesting article found on Zend.com will explain to you how to create ZIP files on the fly using PHP.
|
|