A lot happened, actually. More than was expected. It gave 1880 or so lines of data, in an array. No resource datas now.

However, there are a lot of empty fields in the array.. And it is giving me more pieces of data than the page gen says. The page gen says there are about 300 queries. There could possibly be 1500 spaces of blank data (I would assume not with the massive scrolling I did.). However, I am seeing info that may come globally.. For example, I am seeing an array that has a co-owner's name and info, with his dragonpoints being displayed entirely..
In my excitement of having the info at my finger tips, I went ahead and tried these lines of code.
// $datacount = db_num_rows($dbinfo['querydata']);
// $startcount = 0;
// while ($datacount > $startcount){
// if (in_array(array('modulename'),$dbinfo['querydata'][$startcount])) $debugtheinfo = $dbinfo['querydata'][$startcount]['modulename']."<br>";
// $startcount++;
// }
// debug($debugtheinfo);
They are commented out, I know, but this is an exact copy of my live server. Had to comment it out because it gave the following error, roughly 1000 times (literally):
PHP Warning: "in_array() expects parameter 2 to be array, null given"
in /opt/lampp/htdocs/lib/pageparts.php at 375.Line 375 would be:
// if (in_array(array('modulename'),$dbinfo['querydata'][$startcount])) $debugtheinfo = $dbinfo['querydata'][$startcount]['modulename']."<br>";
I do not see fault in this line, but I may be missing something.