RE: [PHP] Preorder Modified Tree Traversal

2005-03-24 Thread Chris W. Parker
Burhan Khalid mailto:[EMAIL PROTECTED]
on Wednesday, March 23, 2005 10:25 PM said:

 Sitepoint has a great article that has PHP snippets on both pmtt and
 the flat drill-down method.
 
 http://www.sitepoint.com/article/hierarchical-data-database

I would like to add that this is the article where I found out about
pmtt. It's also the article where I got the functions for
traversing/adjusting pmtt. In other words, the building blocks for
whatever you need regarding pmtt are probably in that article. (At least
that was the case for me.)



Chris.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Preorder Modified Tree Traversal

2005-03-24 Thread Matt Babineau
Yeah, I read this article, and it works, but it doesn't set you up for a
drill down scenario... 


Matt Babineau
Criticalcode
w: http://www.criticalcode.com
p: 858.733.0160
e: [EMAIL PROTECTED]

-Original Message-
From: Chris W. Parker [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 24, 2005 8:55 AM
To: Burhan Khalid; Matt Babineau
Cc: php-general@lists.php.net
Subject: RE: [PHP] Preorder Modified Tree Traversal

Burhan Khalid mailto:[EMAIL PROTECTED]
on Wednesday, March 23, 2005 10:25 PM said:

 Sitepoint has a great article that has PHP snippets on both pmtt and 
 the flat drill-down method.
 
 http://www.sitepoint.com/article/hierarchical-data-database

I would like to add that this is the article where I found out about pmtt.
It's also the article where I got the functions for traversing/adjusting
pmtt. In other words, the building blocks for whatever you need regarding
pmtt are probably in that article. (At least that was the case for me.)



Chris.

--
PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:
http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Preorder Modified Tree Traversal

2005-03-24 Thread Chris W. Parker
Matt Babineau mailto:[EMAIL PROTECTED]
on Thursday, March 24, 2005 10:49 AM said:

 Yeah, I read this article, and it works, but it doesn't set you up
 for a drill down scenario...

I guess I don't understand what you mean then. I can display a tree just
fine...



Chris.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Preorder Modified Tree Traversal

2005-03-23 Thread Matt Babineau
Hi all,

I'm trying to use pmtt to display a windows explorer style view of
products in a database. If anyone is familiar with pmtt could you send me
an email, I'm looking for some help. I built some code to pull the Levels
out of the database, I need some help tracking which level the user is
clicking on so that I can create a drill-down scenario. I know this can most
likely be achieved more easily using the adjacent tree method, but I need
something a bit more robust than that. Let me know if you have created any
systems that are drill-down style menus or whatnot, I'm interested in the
methods you used to achieve your success.

Thanks All!

PS- Thanks to those who suggested the Linux command line HTML 2 PDF
package!!

Matt Babineau
Criticalcode
w: http://www.criticalcode.com
p: 858.733.0160
e: [EMAIL PROTECTED]



Re: [PHP] Preorder Modified Tree Traversal

2005-03-23 Thread Burhan Khalid
Matt Babineau wrote:
Hi all,
I'm trying to use pmtt to display a windows explorer style view of
products in a database. If anyone is familiar with pmtt could you send me
an email, I'm looking for some help. I built some code to pull the Levels
out of the database, I need some help tracking which level the user is
clicking on so that I can create a drill-down scenario. I know this can most
likely be achieved more easily using the adjacent tree method, but I need
something a bit more robust than that. Let me know if you have created any
systems that are drill-down style menus or whatnot, I'm interested in the
methods you used to achieve your success.
How are you tracking them now? What's not working?
Sitepoint has a great article that has PHP snippets on both pmtt and the 
flat drill-down method.

http://www.sitepoint.com/article/hierarchical-data-database
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php