Best Tutorials website
Latest tutorials

Advertisment

Advanced PHP: Saving Yourself Time with the Clone Construct!

Advanced PHP: Saving Yourself Time with the Clone Construct!

Cloning an object is quite different than it was in PHP4. In PHP4 you simply assigned the object to a new object and it would clone it verbatim....


Views: 539 | Rating star | by Marry
PHP - OOP

Understanding PHP Session

Understanding PHP Session

A Brief Introduction about Session and an example to understand it.


Views: 470 | Rating star | by Steve
PHP - Miscellaneous

Commenting Your PHP Code

Commenting Your PHP Code

A guide on how to comment your PHP scripts correctly.


Views: 490 | Rating star | by David
PHP - Miscellaneous

The Wonders of Magic Function: __toString()

The Wonders of Magic Function: __toString()

For this article we’ll be looking at the __toString magic function, and a very handy function it is to. What this function does is allow you to...


Views: 511 | Rating star | by Stephen
PHP - OOP

Introducing the PHP Command Line Interface

Introducing the PHP Command Line Interface

In this short article I will introduce you to the PHP Command Line Interface (or CLI for short). PHP CLI allows you to run PHP scripts directly...


Views: 561 | Rating star | by Adam
PHP - Development

Creating a Simple Login System

Creating a Simple Login System

A detailed guide on how to create a simple login system for your website.


Views: 482 | Rating star | by Amy
PHP - Miscellaneous

Object Oriented Features New to PHP 5

Object Oriented Features New to PHP 5

Object Oriented Features New to PHP 5......a useful tutorial.


Views: 546 | Rating star | by Source
PHP - OOP

RSS Parsing with SimpleXML

RSS Parsing with SimpleXML

This tutorial will provide a simple example of one method for parsing an XML document, more specifically, an RSS formatted XML document. This...


Views: 592 | Rating star | by Tutorial
PHP - XML and PHP

Random Numbers in PHP

Random Numbers in PHP

How to create a random numbers script in PHP, a well detailed tutorial.


Views: 549 | Rating star | by Jason
PHP - Randomizing

PHP User Authentication with Dreamweaver

PHP User Authentication with Dreamweaver

Using Dreamweavers built-in dynamic application tools I will show you how to use them to create a restricted area for your site that users have to...


Views: 552 | Rating star | by John
PHP - Form Processing

PHP Random Numbers & Letters

PHP Random Numbers & Letters

function to generate random deferent pattern like letters and combination of letters and numbers using PHP


Views: 568 | Rating star | by Adam
PHP - Randomizing

A Beginners Introduction to PHP

A Beginners Introduction to PHP

This tutorial was written to introduce you to PHP, it assumes you know nothing about programming at all, starts with the very basics and slowly...


Views: 535 | Rating star | by Slicer
PHP - Introduction to PHP

Timezone Class: Dealing with Timezones the Proper Way

Timezone Class: Dealing with Timezones the Proper Way

I must admit that I was going to write you a simple timezone script and then tell you how easy it was. However, I came across some handy timezone_*...


Views: 561 | Rating star | by Sean
PHP - Development

Install Apache Web Server on Windows Vista

Install Apache Web Server on Windows Vista

This tutorial explains how to install Apache Web Server on Windows Vista.


Views: 801 | Rating star | by Colin
PHP - Web Fetching

PHP GD Library Walkthrough: Creating a Bar Chart

PHP GD Library Walkthrough: Creating a Bar Chart

Ever wanted to become adept in PHP's GD library? This article will show you how to create a bar chart using the PHP GD library.


Views: 483 | Rating star | by Stephen
PHP - Image Manipulation

PHP Category System

PHP Category System

Create a category system that allows for unlimited number of categories. Keep everything dynamic and easy to use.


Views: 592 | Rating star | by Steve
PHP - Content Management

Walkthrough: Parsing a SRT Subtitle File using Various Parsing Techniques

Walkthrough: Parsing a SRT Subtitle File using Various Parsing Techniques

This article will be introducing a couple of nifty tricks that I've seen scattered around the Internet. One of which is how to detect for the...


Views: 510 | Rating star | by Mathew
PHP - File Manipulation

Creating a Function in PHP

Creating a Function in PHP

Learn how to create and use functions correctly in PHP.


Views: 509 | Rating star | by Troy
PHP - Miscellaneous

Images upload Website

Images upload Website

This tutorial will sho you how to write a script responsible for uploading images to web server. And create images album from the uploaded...


Views: 530 | Rating star | by Slicer
PHP - Image Manipulation

Storing a PHP Array in a MySQL Database

Storing a PHP Array in a MySQL Database

Although there isn't an explicit MySQL data type for arrays or list data, you can store PHP arrays as strings within a MySQL database using...


Views: 482 | Rating star | by Jason
PHP - Database Related