y en kumbiaphp por ejemplo:
Código PHP:
Ver original<div id="scaffold">
<h1>Persona del Proyecto</h1>
<div id="mensajes_flash" >
<?php View::content() ?>
</div>
<?php
Table::headers('id', 'Rut', 'Nombre', 'Apellido P.', 'Apellido M.','Telefono','Celular','Correo Electronico','Cargo','Fecha de Nacimiento');
Table::fields('id','rut','nombre','apaterno','amaterno','telefono','celular','email','cargo','fec_nac');
echo Table
::create(array($persona)); ?>
</div>
<div class="actions">
<?php echo Html::linkAction('', 'Volver', 'class="btn right"') ?>
</div>
</br>
<table>
<thead>
<tr>
<th colspan="
<?php echo count($proyectosy) ?> ">Proyectos</th>
</tr>
<tr>
<?php foreach ($proyectosy as $e) : ?>
<th style="text-align: center">
<a href="#" id="check_rol_<?php eh($e->id) ?>" class="check_perfiles">
<?php eh($e->nom_proy) ?>
</a>
</th>
<?php endforeach ?>
</tr>
<thead>
</table>