Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
5answers
1k views

SQL to reorder nodes in a hierarchy

I've got a 'task list' database that uses the adjacency list model (see below) so each 'task' can have unlimited sub-tasks. The table has an 'TaskOrder' column so everything renders in the correct ...
1
vote
1answer
847 views

Adjacency List Model with two tables

So I think my issue boils down to two questions: How do I build a traversable tree structure in PHP when the tree is stored in MySQL (between two tables) using the Adjacency List Model approach ...
0
votes
1answer
37 views

Adjacency List Model + Website Navigation

I am using the adjacency list model to find sub categories within my website. I have working PHP code to find all the categories and sub categories, but now I cannot figure out how use that to create ...
0
votes
1answer
274 views

Help on displaying data in colunm PHP MySQL (Modified Preorder Tree Trasversal)

Hello I'm trying to get a multicolumn display (if it can be called so) with the code below here is the result: . Someone can see why These leaves are broken? or tell me please which is better: a ...