Welcome Guest, Not a member yet? Register   Sign In
Total n00b PHP loop question
#12

[eluser]jedd[/eluser]
Oh, I didn't really take notice of the original code, sorry. I don't need that extra flag there - just use $last_topic for both purposes :

Code:
<?php
  
    $last_topic = NULL;

    echo "<categories>\n";
    foreach($bfg_charts_midnightmysteries as $row)
        echo "<category label='" . $row->Days . "'/>\n";

    echo "</categories>\n";
    
    foreach($bfg_charts as $row)  {
        // If parent matches the previous parent, don't show it - just indent a bit
        if ($row->Title == $last_topic)
            echo "";
        else  {
            if ($last_topic)
                echo "</dataset>\n";
            echo "<dataset seriesName='" . $row->Title . "'/>\n";
            }
        // You're always showing the child information
        echo "<set unusedLabelDate='" . $row->Date . " unusedLabelDays='" . $row->Days . "' value=" . $row->Rank . "/>\n";
        
        // Set last topic to current topic (for test on next loop)
        $last_topic = $row->Title;
        }
    echo "</dataset>\n";
?&gt;

That should work the same way - untested code, of course.


Messages In This Thread
Total n00b PHP loop question - by El Forum - 11-28-2009, 05:26 PM
Total n00b PHP loop question - by El Forum - 11-28-2009, 05:59 PM
Total n00b PHP loop question - by El Forum - 11-28-2009, 06:44 PM
Total n00b PHP loop question - by El Forum - 11-29-2009, 01:10 AM
Total n00b PHP loop question - by El Forum - 11-29-2009, 03:13 AM
Total n00b PHP loop question - by El Forum - 11-29-2009, 05:35 AM
Total n00b PHP loop question - by El Forum - 11-29-2009, 05:59 PM
Total n00b PHP loop question - by El Forum - 11-29-2009, 06:49 PM
Total n00b PHP loop question - by El Forum - 11-30-2009, 04:07 PM
Total n00b PHP loop question - by El Forum - 11-30-2009, 04:32 PM
Total n00b PHP loop question - by El Forum - 11-30-2009, 06:44 PM
Total n00b PHP loop question - by El Forum - 11-30-2009, 07:00 PM
Total n00b PHP loop question - by El Forum - 12-17-2009, 03:43 PM



Theme © iAndrew 2016 - Forum software by © MyBB