Acually you made a type-o Marco.
PHP Code:
while ($pmcount = $db->fetch_array($pmcounts))
{
$messagecounters["$pmcount[folderid]"] = intval($pmcount['total']);
}
$links = array();
foreach ($messagecountersAS $key => $value)
Should be:
PHP Code:
while ($pmcount = $db->fetch_array($pmcounts))
{
$messagecounters["$pmcount[folderid]"] = intval($pmcount['total']);
}
$links = array();
foreach ($messagecounters AS $key => $value)
You forgot the space before AS