cripes! page after page! How do i get it to print in a column?
--------------- Added [DATE]1248482616[/DATE] at [TIME]1248482616[/TIME] ---------------
Sooooo... I've written this into a plugin..
Code:
$find = 'hoobajoob';
foreach( $vbulletin->forumcache as $key => $value){
$replace = $replace . "KEY: $key, VALUE: $value<br />";
}
$vbulletin->templatecache['navbar'] = str_replace($find, $replace . $find, $vbulletin->templatecache['navbar']);
Now all I get is "KEY: 34 VALUE: ARRAY" over and over.
How do I break it down one more level so I can see whats in all of those arrays? I've been trying with "foreach() but it just gives me php errors.