Best Tutorials website
Latest tutorials

Advertisment

CMS Tutorial: Part 2: Data Access Layer

CMS Tutorial: Part 2: Data Access Layer

Create your own content management system using an OOP approach. The second part implements a class that handles the database functions that...


Views: 661 | Rating star | by Colin
PHP - Content Management

Tell-A-Friend Form

Tell-A-Friend Form

See how to create a tell-a-friend form in PHP. The source code shows you how to validate user data and then safely process it. Check the demo.


Views: 521 | Rating star | by Simon
PHP - Form Processing

Creating a Random Password Generator

Creating a Random Password Generator

How to create a script that generates a password from the current time in microseconds.


Views: 547 | Rating star | by Simon
PHP - Randomizing

PHP File Create

PHP File Create

A basic tutorial on creating PHP for reading and writing.


Views: 509 | Rating star | by Ben
PHP - File Manipulation

Creating a simple password protection

Creating a simple password protection

This tutorial will teach you how to create a very simple password protection for your web pages.


Views: 495 | Rating star | by Mark
PHP - User Authentication

Creating a PHP Script Timer

Creating a PHP Script Timer

This timer is easy to implement and determines the time taken for a php script to execute correct to a microsecond.


Views: 532 | Rating star | by Troy
PHP - Date and Time

HTML Mail

HTML Mail

This tutorial will show you how to send email with HTML output in PHP.


Views: 557 | Rating star | by Tutorial
PHP - Form Processing

Creating a simple SQL script executor

Creating a simple SQL script executor

In this tutorial I will show you how you can create a simple PHP script to execute MySQL batch files.


Views: 538 | Rating star | by Isac
PHP - Database Related

Conexion a una base de datos

Conexion a una base de datos

Veremos paso a paso como conectar una base de datos mysql usando php como lenguaje de programacion.


Views: 506 | Rating star | by Stephen
PHP - Database Related

Chinese Characters in PHP String Literals

Chinese Characters in PHP String Literals

This article provides tutorial notes on Chinese characters in PHP string literals. Topics include PHP string literal syntax; testing Chinese...


Views: 560 | Rating star | by Nick
PHP - Development

20 Minutes with PHP Varibles

20 Minutes with PHP Varibles

This tutorial goes over the string and integers variables in PHP.


Views: 595 | Rating star | by Isac
PHP - Introduction to PHP

Redirect The Browser Using PHP

Redirect The Browser Using PHP

If you want to redirect the user to another page, use this script.


Views: 803 | Rating star | by Stephen
PHP - Redirection

Validar email con expresiones regulares

Validar email con expresiones regulares

Validar email con expresiones regulares y la funcion ereg() para lograr el cometido


Views: 553 | Rating star | by Marry
PHP - Form Processing

PHP Spam Terminator - protect your site from annoying spam posts

PHP Spam Terminator - protect your site from annoying spam posts

Anyone who operates their own website knows that you need to provide forms in your site for visitors to contact you. The big challenge is providing...


Views: 517 | Rating star | by Jason
PHP - Security

Advanced Password Protect a Webpage

Advanced Password Protect a Webpage

Learn how to create a script that protects pages with a password.


Views: 541 | Rating star | by Slicer
PHP - Security

Ban IPs using MySQL database

Ban IPs using MySQL database

Learn how to create a IP banning script for your site, homepage or for your blog.


Views: 523 | Rating star | by Sarah
PHP - User Authentication

An in depth look into PHP

An in depth look into PHP

An in depth look into PHP for Beginners, explaining the syntax, the reasons for Dynamic websites and other things PHP


Views: 560 | Rating star | by David
PHP - Introduction to PHP

Making Secure PHP Applications

Making Secure PHP Applications

This tutorial covers SQL injection and various types of user system holes. I wrote this after seeing many, many scripts (some on high traffic...


Views: 560 | Rating star | by David
PHP - Security

Creating a Website Design Template System Using PHP

Creating a Website Design Template System Using PHP

Learn how to create a website design templating system using php to be able to easily update different sections on your website by changing only...


Views: 601 | Rating star | by Stephen
PHP - Site Navigation

Do not Repeat Yourself when using Printf!

Do not Repeat Yourself when using Printf!

We all use printf (or sprintf) to help ourselves when mingling together output strings with our variables, right? This is a tip that I use often,...


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