Quote:
Originally Posted by Lynne
print_checkbox_row prints a SINGLE row/checkbox. It won't print from an array. You'll need to put that into a loop.
|
yeah i know , i can loop it
PHP Code:
foreach($playerarray as $player)
{
print_checkbox_row($player, 'inputname', $player);
}
but i search about a good and another solution , i want all checkbox on one only row and Every two or three in each line, like as
print_radio_row OR
print_membergroup_row ..
is there another solution ?!
thnx ,
Lynne