$file = CAT_IMGS.$the_cat['c_id'].".gif";
if( file_exists($file) )
{
$the_cat['cat_name'] = "<img src='".$file."' alt='' border='0' width='20' height='20' /> ".$the_cat['cat_name'];
}
$the_cat = "<a href=\"".$ibforums->base_url."act=Arcade&cat=".$the_cat['c_id']."\">".$the_cat['cat_name']."</a> (".$the_cat['num_of_games'].")";
$categories .= $this->html->cat_cell($the_cat);
$cat_counter++;
}
}
O.G said:excellent thankyou... another question for you how to put the name category under image,as shown in pic 2
$file = CAT_IMGS.$the_cat['c_id'].".gif";
if( file_exists($file) )
{
$the_cat['cat_name'] = "<img src='".$file."' alt='' border='0' width='[color=Red]20[/color]' height='[color=red]20[/color]' />[color=red]</br>[/color] ".$the_cat['cat_name'];
}
$the_cat = "<a href=\"".$ibforums->base_url."act=Arcade&cat=".$the_cat['c_id']."\">".$the_cat['cat_name']."</a> (".$the_cat['num_of_games'].")";
$categories .= $this->html->cat_cell($the_cat);
$cat_counter++;
}
}