Quote:
Originally Posted by Ranma2k
yes just put a counter that will add
after each 5
did you mange to get it to work in a module ?
|
Yep, got the module working no prob.
I'm a bit of a novice and don't know to add the counter.
Here is part of another similar hack for photopost images. I imagine it would be similar to what I'm looking for but I don't know wnough to adapt this to vbimagehost ;(
Code:
PPPRINT;
$counted++;
$countcol++;
}
// If we've reached our limit, quit
if ( $counted == $num_display ) break;
// If we need to end the column, do so.
if ( $countcol == $columns ) {
$featured .= <<<PPPRINT
</tr>
<tr>
PPPRINT;
$countcol = 0;
}
}
@mysql_free_result($result);