News Feed
Jobs Feed
Sections




News Archive
PHPBuilder.com:
Handling Hierarchical Data in MySQL and PHP
September 06, 2012 @ 10:16:44

On PHPBuilder.com today there's a new tutorial showing you a way to work with hierarchical data in MySQL from your PHP application in two different ways (methods).

The hierarchical data structure is one of the most common data structures in programming. It represents a set of data where each item (except the root) has one parent node and one or more children nodes. Web programmers use hierarchical data for a number of applications, including content management systems, forum threads, mailing lists, and e-commerce product categorization. In this tutorial , I will explain how to manage hierarchical data using MySQL and PHP. Specifically, I will explore the two most popular hierarchical data models: adjacency list model and nested set model.

They start with the adjacency list model, showing how to do a left join on the table on the parent ID to record ID and then filter through them, merging them into a main array as needed. The nested set model is slightly different and involves two new columns, a "lft" and "rgt", that point you to the records around the current one. This method makes the actual SQL query to find the structure a bit simpler, but isn't quite as flexible as the first method.

0 comments voice your opinion now!
hierarchical data mysql tutorial nestedset adjacencylist


blog comments powered by Disqus

Similar Posts

DevShed: Main Methods of the DirectoryIterator Class in PHP 5

Zend Developer Zone: AJAX Chat Tutorial Part 6 : Updating the User List

Gonzalo Ayuso's Blog: Using Monkey Patching to store files in CouchDb using the standard filesystem

Federico Cargnelutti' Blog: Adding theme support to your Zend Framework application

Gonzalo Ayuso's Blog: Reflection over PHPDoc with PHP


Community Events











Don't see your event here?
Let us know!


database zendframework2 composer development unittest opinion framework podcast testing community functional series language introduction release interview code phpunit api example

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework