Cita:
Iniciado por gamau6 Lo que se hace es dividir en dos tablas el resultado
algo asi
Código PHP:
Ver original<?php if ($izq) {?>
<tr><?php }?>
<td>
<?php echo $variable['dato'];?> </td>
<?php if (!$izq) {?></tr><?php }?>
GRACIAS gamau6 lo solucione con la idea que me diste este es el codigo
Código PHP:
Ver original<?
$clCategorias = new Categorias();
$resCategorias = $clCategorias->ListarCategoria();
echo "<tr><td rowspan='".count($resCategorias)."' valign='top'> INTERESES</td>";
if(count($resCategorias) > 0) {
foreach($resCategorias as $cat)
{
$i++;
$izq = $i % 2;
$indi = $cat["idCategoria"];
if ($izq) {
echo" <tr>"; }
echo"<td>
<input id='checkbox' name='ArregloCategorias[]' type='checkbox' value='".$cat["idCategoria"]."'></td><td>".$cat["nombre"]."</td>";
if (!$izq) { echo "</tr>";}
}
}
?>