Best Tutorials website
Latest tutorials

Advertisment

Best Practices: Database Abstraction

Best Practices: Database Abstraction

PEAR's DB classes are one of the database abstraction layers. This article takes a look at some traditional database access methods and then...


Views: 792 | Rating star | by Ben
PHP - Database Related

PostgreSQL and PHP Tutorial

PostgreSQL and PHP Tutorial

This is a nice tutorial on how to use PostgreSQL and PHP together. Topics covered include: Installation of PostgreSQL, PHP, and Apache, A Brief...


Views: 1015 | Rating star | by Colin
PHP - Database Related

SQL Theory & How-To

SQL Theory & How-To

This article addresses two SQL-related issues in PHP: 1) Creating complex, powerful, queries to take advantage of your table schemas, and 2)...


Views: 929 | Rating star | by Source
PHP - Database Related

Doing Simple DB Abstraction in PHP

Doing Simple DB Abstraction in PHP

This tutorial explains the need for database abstraction in PHP, and shows how to create your own database API that can be to used with different...


Views: 940 | Rating star | by Colin
PHP - Database Related

Building Next/Prev Buttons for Query Results (Part 2)

Building Next/Prev Buttons for Query Results (Part 2)

In this Part 2 of the article 'Building Next/Prev Buttons for Query Results,' you will be shown a sample code designed to work in most...


Views: 807 | Rating star | by Slicer
PHP - Database Related

ODBC Socket Server

ODBC Socket Server

This article describes how to make Access and PHP work together using the ODBCSocketServer, an open source socket server, available at...


Views: 988 | Rating star | by Adam
PHP - Database Related

Creating Dynamic Next / Previous Buttons with PHP and MySQL

Creating Dynamic Next / Previous Buttons with PHP and MySQL

This tutorial explains how to program Next / Previous buttons with a dynamic, reusable class using PHP and MySQL or PostGreSQL.


Views: 904 | Rating star | by John
PHP - Database Related

PHPLIB and multiple databases

PHPLIB and multiple databases

This 6-page article explains how to create an extension to PHPLIB to work with multiple databases. You may find this article helps you extend...


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

Uploading, Saving and Downloading Binary Data in a MySQL Database

Uploading, Saving and Downloading Binary Data in a MySQL Database

This article is aimed at answering one of the most asked questions on the PHP mailing list and discussion forums alike: How to store binary files...


Views: 825 | Rating star | by Tutorial
PHP - Database Related

Are PHP and MySQL the Perfect Couple?

Are PHP and MySQL the Perfect Couple?

Many devs using MySQL have fallen in love with PHP. Jason Gilmore explains why they're the perfect couple. This is ore of an introductory...


Views: 926 | Rating star | by Donald
PHP - Database Related

MySQL Table Joins

MySQL Table Joins

One of the great characteristics of SQL (Structured Query Language) is the fact that one can develop access and modify data across various tables....


Views: 901 | Rating star | by Simon
PHP - Database Related

PHP and Accessing MySQL Databases

PHP and Accessing MySQL Databases

PHP can be used for many things, including grabbing your MySQL database entries. Here we learn two methods of doing so.


Views: 883 | Rating star | by Troy
PHP - Database Related

So you want to use a database in your site?

So you want to use a database in your site?

In this two-page online tutorial you will learn how to create a database-driven site that can display content on request. It covers topics on a...


Views: 807 | Rating star | by Adam
PHP - Database Related

A Contact Database using MySQL and PHP

A Contact Database using MySQL and PHP

MySQL has a small, highly optimized database engine that implements the entry-level SQL92 specification. Its rich set of support tools lets you...


Views: 932 | Rating star | by Colin
PHP - Database Related

MySQL and PHP

MySQL and PHP

PHP provides built in functions to access just about every database that exists. MySQL is well designed, powerful and most importantly free in some...


Views: 909 | Rating star | by Sarah
PHP - Database Related

Interfacing With MS Access 97+

Interfacing With MS Access 97+

Here, you will learn how to create an MS Access database and interface with it using PHP on Windows platform. Main topics include: Creating an...


Views: 917 | Rating star | by John
PHP - Database Related

SQL Database Function Wrappers

SQL Database Function Wrappers

When interacting with a database, functions are called that are common to every transaction; functions to establish a connection, execute the query...


Views: 899 | Rating star | by Slicer
PHP - Database Related

Connecting to a mySQL database

Connecting to a mySQL database

This tutorial explains how to use several basic MySQL database functions in PHP. Main topics include: Connecting to a mySQL database using PHP,...


Views: 953 | Rating star | by Sean
PHP - Database Related

Admin user interface: adding and deleting users

Admin user interface: adding and deleting users

This is the second part of creating Web-based admin user interface. This tutorial covers adding and deleting users via Web form using a MySQL...


Views: 757 | Rating star | by John
PHP - Database Related

Database Normalization And Design Techniques

Database Normalization And Design Techniques

One of the most important factors in dynamic web page development is database definition. If your tables are not set up properly, it can cause you...


Views: 785 | Rating star | by Brad
PHP - Database Related