Can someone help with the following:
I would like to query the database and have the array results display 1/2 of the rows in table column 1 and then the other 1/2 in the same table's column 2
Like below:
Row 1 Result | Row 2 Result
Row 3 Result | Row 4 Result
Row 5 Result
So on and so forth
Code: Select all
<tr class="bg">
<td align="center" class="first"><div align="right">
<input type="checkbox" name=box[] value="'.$row.'" id="checkbox2" >
</div></td>
<td align="center" class="last">'.$row.'</td>
<td align="center" class="last"><div align="right">
<input type="checkbox" name=box[] value="'.$anotherrow.'" id="checkbox2" >
</div></td>
<td align="center" class="last">'.$anotherrow.'</td>
</tr>Thanks!!!