Jump to content

Help with parent/child array relationship


gibigbig

Recommended Posts

This is my database structure:

 

http://www.awesomescreenshot.com/image/733881/57d01b042ca99b9a36dde90dd6640cdc

 

I would like to loop through all the child elements (those who's parent_id is set to the data_id within the same table).

Therefore those with "parent_id" as "0" are parents, and those with parent_id with a number in it is a child.

 

I would like help creating a function that will generate tables, with the table itself as the parent, and all the rows within it would be children of that parent. There is only one layer of depth in this project (one parent and one child layer always. ). 

 

Can anyone help, or would want a more detailed description?

 

Thank you, and looking forward to a reply.

Link to comment
Share on other sites

You would join the table to itself on data_id/parent_id

 

Example

SELECT p.item_id as parent_item
  , p.alias as parent_alias
  , p.type as parent_type
  , c.alias as child_alias
  , c.type as child_type
  , c.name as child_name
FROM item p 
  LEFT JOIN item c ON p.data_id = c.parent_id
WHERE p.parent_id = 0
ORDER BY parent_item;

When you process the results, check for a change in the parent_item value. When it changes, close off the previous table and start a new one for the new item.

 

Example

$db = new mysqli(HOST, USERNAME, PASSWORD, 'darius');

$sql = "SELECT p.item_id as parent_item
        , p.alias as parent_alias
        , p.type as parent_type
        , c.alias as child_alias
        , c.type as child_type
        , c.name as child_name
        FROM item p 
            LEFT JOIN 
            item c ON p.data_id = c.parent_id
        WHERE p.parent_id = 0
        ORDER BY parent_item";    
$currItem = 0;
$res = $db->query($sql);
while (list($parent_item,$parent_alias,$parent_type,$child_alias,$child_type,$child_name) = $res->fetch_row()) {
    if ($parent_item != $currItem) {    // has value changed?
        if ($currItem) {
            echo "</table>\n";     // close table (if we have one)
        }
        echo "<table border='1'><caption>$parent_alias</caption>\n";
        $currItem = $parent_item;  // reset current item value
    }
    echo "<tr><td>$child_alias</td><td>$child_type</td><td>$child_name</td></tr>\n";
}
echo "</table>\n";  // close final table

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.