sbrinley Posted May 28, 2009 Share Posted May 28, 2009 About a week ago I posted something similar but I don't think I asked the question correctly. I've come very close to a solution but I need a little help to get the rest of the way (or maybe a different set of eyes) This is what I have so far: A table that looks like this: Parent Child A00030002AXA A00030002AXA R50210802AXA A00030002AXA R50231502AXA A00030002AXA R50241502AXA R50210802AXA R50210002AXA R50231502AXA R50230002AXA R50241502AXA R50240002AXA This is the PHP script I'm using. Which has been modified by search through various other solutions and take in part from a tutorial from another website. function display_children($parent, $level) { // retrieve all children of $parent $result = mysql_query('SELECT child FROM bom '. 'WHERE parent="'.$parent.'";'); // display each child while ($row = mysql_fetch_array($result)) { // indent and display the title of this child echo str_repeat(' ',$level).$row['child']."<br>"; // call this function again to display this // child's children display_children($row['child'], $level+1); } } display_children('',0); What is displayed is this A00320002AXA R50210002AXA R50210002AXX R50230302AXA R50230002AXA R50230002AXX R50240302AXA R50240002AXA R50240002AXX I would like to arrange the data so it looks like this A00320002AXA R50210002AXA R50210002AXX R50230302AXA R50230002AXA R50230002AXX R50240302AXA R50240002AXA Does anyone have any suggestions or can you point me in the right direction? Thanks !!! Quote Link to comment https://forums.phpfreaks.com/topic/159967-solved-recursion-how-to-display-data-hierarchically-from-a-table/ Share on other sites More sharing options...
Mark Baker Posted May 28, 2009 Share Posted May 28, 2009 It doesn't matter how many spaces you string together. If you're trying to display it in a web browser, then it's the web browser that displays 10,20,100,1000 spaces as a single space. Only if you do a view source will you see multiple spaces. Try using a for your indent instead of a space. Quote Link to comment https://forums.phpfreaks.com/topic/159967-solved-recursion-how-to-display-data-hierarchically-from-a-table/#findComment-843919 Share on other sites More sharing options...
Ken2k7 Posted May 28, 2009 Share Posted May 28, 2009 Or <PRE> Quote Link to comment https://forums.phpfreaks.com/topic/159967-solved-recursion-how-to-display-data-hierarchically-from-a-table/#findComment-844137 Share on other sites More sharing options...
sbrinley Posted May 28, 2009 Author Share Posted May 28, 2009 Thanks for the replies. I think more in lines of what I meant about the spacing is to create <ul> items. I put in the spaces as just an example. Here is what I'm talking about: <ul>A00320002AXA <li><ul>R50210002AXA</li> <li>R50210002AXX</li></ul> <li><ul>R50230302AXA</li> <li><ul>R50230002AXA</li> <li>R50230002AXX</li></ul></ul> <li><ul>R50240302AXA</li> <li>R50240002AXA</li></ul> </ul> I'm wondering how to insert the unordered list item tags into the loop. Quote Link to comment https://forums.phpfreaks.com/topic/159967-solved-recursion-how-to-display-data-hierarchically-from-a-table/#findComment-844581 Share on other sites More sharing options...
waynew Posted May 28, 2009 Share Posted May 28, 2009 Thanks for the replies. I think more in lines of what I meant about the spacing is to create <ul> items. I put in the spaces as just an example. Here is what I'm talking about: <ul>A00320002AXA <li><ul>R50210002AXA</li> <li>R50210002AXX</li></ul> <li><ul>R50230302AXA</li> <li><ul>R50230002AXA</li> <li>R50230002AXX</li></ul></ul> <li><ul>R50240302AXA</li> <li>R50240002AXA</li></ul> </ul> I'm wondering how to insert the unordered list item tags into the loop. Alot of overlapping tags in that html there. Why not just use Quote Link to comment https://forums.phpfreaks.com/topic/159967-solved-recursion-how-to-display-data-hierarchically-from-a-table/#findComment-844594 Share on other sites More sharing options...
sbrinley Posted May 29, 2009 Author Share Posted May 29, 2009 Whether its using   or html tags I still need some help adding the tags to the loop. Quote Link to comment https://forums.phpfreaks.com/topic/159967-solved-recursion-how-to-display-data-hierarchically-from-a-table/#findComment-844616 Share on other sites More sharing options...
Ken2k7 Posted May 29, 2009 Share Posted May 29, 2009 htmlentities Quote Link to comment https://forums.phpfreaks.com/topic/159967-solved-recursion-how-to-display-data-hierarchically-from-a-table/#findComment-844618 Share on other sites More sharing options...
kickstart Posted May 29, 2009 Share Posted May 29, 2009 Hi Probably something like this:- <?php function display_children($parent) { // retrieve all children of $parent $result = mysql_query('SELECT child FROM bom WHERE parent="'.$parent.'";'); // display each child $FirstTime = true; while ($row = mysql_fetch_array($result)) { if ($FirstTime) { echo "<ul>"; $FirstTime = false; } // indent and display the title of this child echo "<li>".$row['child']."</li>"; // call this function again to display this // child's children display_children($row['child']); } if (!$FirstTime) echo "</ul>"; } display_children(''); ?> Quote Link to comment https://forums.phpfreaks.com/topic/159967-solved-recursion-how-to-display-data-hierarchically-from-a-table/#findComment-844620 Share on other sites More sharing options...
roopurt18 Posted May 29, 2009 Share Posted May 29, 2009 Have you read this: http://dev.mysql.com/tech-resources/articles/hierarchical-data.html Quote Link to comment https://forums.phpfreaks.com/topic/159967-solved-recursion-how-to-display-data-hierarchically-from-a-table/#findComment-844623 Share on other sites More sharing options...
sbrinley Posted May 29, 2009 Author Share Posted May 29, 2009 Hi Probably something like this:- <?php function display_children($parent) { // retrieve all children of $parent $result = mysql_query('SELECT child FROM bom WHERE parent="'.$parent.'";'); // display each child $FirstTime = true; while ($row = mysql_fetch_array($result)) { if ($FirstTime) { echo "<ul>"; $FirstTime = false; } // indent and display the title of this child echo "<li>".$row['child']."</li>"; // call this function again to display this // child's children display_children($row['child']); } if (!$FirstTime) echo "</ul>"; } display_children(''); ?> You are awesome that's exactly what I'm looking for! Also thanks roopurt18 that is very helpful as well. i'll do some checking into that. Quote Link to comment https://forums.phpfreaks.com/topic/159967-solved-recursion-how-to-display-data-hierarchically-from-a-table/#findComment-844633 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.