Best Tutorials website
Latest tutorials

Advertisment

Random Numbers in PHP

Random Numbers in PHP

In this tutorial you will learn how to generate random numbers using PHP. It illustrates three helpful examples that uses random numbers:...


Views: 1020 | Rating star | by Colin
PHP - Randomizing

How to tempt Google to index your Site despite redirection

How to tempt Google to index your Site despite redirection

This short tutorial shows you how to redirect UserAgents with PHP and still getting indexed by Google!


Views: 856 | Rating star | by Daniel
PHP - Redirection

PHP Auto Redirection

PHP Auto Redirection

Learn how to make auto redirection with PHP. There is nothing much to learn, just a little code.


Views: 920 | Rating star | by Sean
PHP - Redirection

simple redirection

simple redirection

For designer who use many html files for his/her site to specific browser, this is just a sample you can customise by yourself.


Views: 953 | Rating star | by Mathew
PHP - Redirection

Creating a Search Application

Creating a Search Application

In this tutorial, we will discuss a method of searching web pages for keywords. We will provide methods for exact keyword matching and a type of...


Views: 985 | Rating star | by Marry
PHP - Searching

A Simple Web Search Engine

A Simple Web Search Engine

This article shows you how to use PHP and a MySQL (or any SQL database) to create your own basic search engine. Covers creating SQL tables, Using...


Views: 1005 | Rating star | by Isac
PHP - Searching

Searching External or Internal Webpages

Searching External or Internal Webpages

This tutorial explains how to conduct keyword searches on a given Webpage. It basically shows how to count and display the number of times a...


Views: 1011 | Rating star | by Jarry
PHP - Searching

Getting and Using Meta Tags for Search Criteria

Getting and Using Meta Tags for Search Criteria

PHP has a built-in function to easily fetch meta tags from php or html pages called the get_meta_tags function. It will take all the meta tags and...


Views: 880 | Rating star | by Mathew
PHP - Searching

Searching a Directory of Files

Searching a Directory of Files

This tutorial shows you how to dynamically compile the list of files in a given directory. You can then conduct keyword searches on the compiled...


Views: 946 | Rating star | by Stephen
PHP - Searching

Simple Security and Sessions in PHP

Simple Security and Sessions in PHP

This article demostrates an easy way to maintain sessions and security (or authorization) in PHP. It does NOT use the PHP built in session support....


Views: 990 | Rating star | by Jarry
PHP - Security

Writing Secure PHP Code

Writing Secure PHP Code

This article will guide you through writing secure PHP code and covers many of the common security pitfalls one will encounter while making php...


Views: 995 | Rating star | by Source
PHP - Security

Create a random password

Create a random password

Nice little function that will generate a completely random password.


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

HTML Templates

HTML Templates

Most sites use a standard template throughout the whole website. The header and footer data is stored in a .php file and loaded for each page...


Views: 1023 | Rating star | by Daniel
PHP - Site Navigation

Dynamic URLS using php and mysql

Dynamic URLS using php and mysql

A tutorial with code snipple included that tells you how to generate links with URLs such as index.php?ID=5 and such. Very easy to follow.


Views: 1007 | Rating star | by Nick
PHP - Site Navigation

php login script tutorial

php login script tutorial

This tutorial sows you how a simple php login system is created.


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

Maintaining state with PHP4 sessions

Maintaining state with PHP4 sessions

HTTP as a protocol is stateless, which doesn't make it easy for a developer. For example, your web server sends out a page to someone ordering...


Views: 949 | Rating star | by Stephen
PHP - User Authentication

Session Management and Authentication with PHPLIB

Session Management and Authentication with PHPLIB

This three-page online tutorial/article talks about managing user session and authntication using PHPLIB, a set of PHP classes designed to make is...


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

Building a Secure Admin Area & .htaccess

Building a Secure Admin Area & .htaccess

This tutorial along with sample code explains how to make a hardcoded admin password gateway using PHP. It also covers how to use .htaccess for...


Views: 765 | Rating star | by Source
PHP - User Authentication

User Authentication from a MySQL database

User Authentication from a MySQL database

Here is a step-by-step tutorial on how to create a user authentication system using PHP/MySQL. It takes you through creating an appropriate MySQL...


Views: 931 | Rating star | by Donald
PHP - User Authentication

Session Management with PHP4

Session Management with PHP4

One of the new great features with PHP4 is the session management feature. It allows you to store variables in a session 'object' during...


Views: 1004 | Rating star | by Tutorial
PHP - User Authentication