Hi Stickers,
That sounds pretty much exactly what I'm trying to do. I've used the Ultimate Side Columns hack I got here to put a right side column in my forum home pages. What I want is to display links in that column to information pertaining to the subforums of the parent forum. i.e. Mexico has 2 subforums: Acapulco and Cancun. When your're in the Mexico forum, I want to see links to the Travel Guides for Acapulco and Cancun in that right column. Then when those individual links are clicked, it will show hotel information etc specific to those areas.
I've created a plugin that hooks into cache_templates. I can get it to display the childlist in an array as forumids.
$childlist_title = $foruminfo['childlist'];
foreach ($childlist_title AS $val)
{
// And then there is a piece of code that filters the ids of the main forum and the parent forum.
if ($val == -1 OR $val == $foruminfo[forumid])
{
"don't print";
}
else
{
"print";
}
}
But this is where I've gotten hung up. I'm not really experienced with PHP but I try awfully hard.

And it's probably pretty basic PHP stuff but I can't seem to figure out how to put this into a code that will loop through the other values in the array and spit them out as $foruminfo[title]. I've tried both a for loop and foreach but my coding experience is not extensive enough for me to figure out what I'm doing wrong. It either prints nothing, or it prints the array. Have you gotten anywhere with your problem? Maybe what I've done might help you. Or better yet, maybe you can help me!

Any ideas?
Thanks!
PJ