Log in

View Full Version : How do you access a forums childlist in forumdisplay.php?


Code Monkey
10-16-2005, 08:55 PM
$foruminfo['childlist'] seems to have no value in forumdisplay.php. What's the best way to access that info?

akanevsky
10-16-2005, 09:16 PM
Why, but it does have a value:
$foruminfo['childlist'] = explode(',', $foruminfo['childlist']);
The above line is present around line 373... But after "explode()", it is an array and you should access it accordingly. To find out what the contents are, add
print "<pre>";
print_r($foruminfo['childlist']);
print "</pre>";
Under it.. :)

Code Monkey
10-16-2005, 11:06 PM
Perfect thanks.

akanevsky
10-16-2005, 11:14 PM
_:)_