All pastes #42584 Raw Edit

Stuff

public php v1 · immutable
#42584 ·published 2006-02-21 05:36 UTC
rendered paste body
$array = array('stuff','morestuff','somemore');$count = count($array);				$r=1;while($r <= $count) {   echo '<td><input type="checkbox" name="options[]" value="'.$array.'" /><span>'.$array.'</span></td>';   if($r++%4==0) {		echo '</tr><tr>';   }}