Submit Tutorial   

Debugging MySQL issues in PHP
Possibly the most common issue users have with PHP is working with MySQL. When a query fails, many users don't know where to begin debugging. This guide outlines my debugging procedure.
PHP: Introduction To PDO
In this tutorial I'll introduce you to using PDO and show examples of its use. The tutorial assumes you already have a database and tables setup (I'll be using MySQL and SQLite) for testing.
Understanding MySQL for PHP
Understanding MySQL for PHP is the new series of videos where I'm explaining what MySQL is and how to use it to create your own database. Every week we will be publishing the new video to add to this series.
Advanced search form for your website with PHP and MySQL
This tutorial explains how to create the advanced search form for your website with PHP and MySQL using text fields, dropdown menus, radio buttons and check boxes.
Display records in multi column format with PHP
This two videos explain how to populate records from the MySQL database and display them on the page in the multi column format. Each column follows the ascending order of the records from the previous column. In this example we are using Table, but you can use any HTML element to display records in multi column format.
PHP 5: MySQLi Prepared Statements
This tutorial will guide you through creating MySQLi prepared statements. MySQLi is an extension/API for PHP that is also know as MySQL Improved. MySQLi is included with versions 5 of PHP and later that allows PHP developers to take advantage of all the features in MySQL 4.1.3.
PHP call oracle store procedure
This tutorial is an example to show how to code a php to call oracle store procedure
Using Codeigniter for PHP application development
This article explains how effective PHP Framework web applications are developed using CodeIgniter, along with its important features and advantages, with an example
MySQL Tutorial
MySQL tutorial step by step with practical examples. It very useful for you to start program PHP/MySQL.
Create database driven (dynamic) website with Dreamweaver CS3, PHP and MySQL
This tutorial explains how to create database driven (dynamic) website with Dreamweaver CS3, PHP and MySQL.
Adding Info To A MySQL Database Via Queries
A tutorial on submitting information to a database via simple PHP Queries.
PHP MySQL tutorial
In this PHP MySQL tutorial I will show you how to use basic database manipulation features in PHP.
Creating a Simple Database Abstraction Layer
If you ever intend to create an open source PHP script that utilizes a database, you will likely at one time or another be faced with the question "How do I interface with more than one type of database system?" The answer is simple: a database abstraction layer. We'll show you how to create a simple database abstraction layer that works with MySQL, MsSQL, and PostgreSQL in this example.
Writing your own MySql class
In this tutorial we cover how to make a MySql class file which will control all database activity.
Banner System
A simple banner system to randomly rotate images in a MySQL database.