query($sql); $result = array(); if (!is_a($res, 'PEAR_Error')) { while ($val = $res->fetchRow()) { $val['date'] = substr($val['created'], 0, 10); // Strip the time. $result[] = $val; } return $result; } return false; } // The getGroupName function returns group name. static function getGroupName($group_id) { $mdb2 = getConnection(); $sql = "select name from tt_groups where id = $group_id and (status = 1 or status = 0)"; $res = $mdb2->query($sql); if (!is_a($res, 'PEAR_Error')) { $val = $res->fetchRow(); return $val['name']; } return false; } }