8
try something like this:
global $xoopsDB;
$result = $xoopsDB->queryF("SELECT * FROM " . $xoopsDB->prefix("wfschannel") . " WHERE defaultpage = 0 ORDER by weight");
$i = 1;
while(list($CID, $pagetitle, $maintext, $weight, $groupid, $html, $smiley, $xcodes ) = $xoopsDB->fetchRow($result))
{
if (checkAccess($groupid))
{
$modversion['sub'][$i]['name'] = $pagetitle;
$modversion['sub'][$i]['url'] = "index.php?pagenum=" . $CID . "";
}
$i++;
}