
Untitled
By: a guest on
Dec 25th, 2010 | syntax:
PHP | size: 0.28 KB | hits: 27 | expires: Never
echo'<table border="1" width="700">';
for( $i = $start; $i < $start+5; $i++ )
{
echo'<tr>';
for( $j = 0; $j < $col; $j++ ) {
if( ! empty( $array[$j] ) ) {
echo '<td>'.$array[$j]['item_id'].'</td>';
}
}
echo'</tr>';
}
echo'</table>';