btw:
PHP Code:
if ($DB_site->num_rows($posts))
{ // display the information
while ($post = $DB_site->fetch_array($posts))
{
$cell++;
$template = iif($post['isdeleted'], "postbit_deleted", "groups_viewthread_postbit");
$postbit = construct_postbit($post, $template);
} //got all that info
}
can be reduced to
PHP Code:
while ($post = $DB_site->fetch_array($posts))
{
$cell++;
$template = iif($post['isdeleted'], "postbit_deleted", "groups_viewthread_postbit");
$postbit = construct_postbit($post, $template);
} //got all that info
as the while contains the if condition already