Beispiel #1
0
						<th>Grupo</th>
						<th>Tipo</th>
						<th>Profesor</th>
					</tr>
				</thead>
				<tbody>
					<?php 
foreach ($aCurso as $oCurso) {
    ?>
					<tr>
						<th><?php 
    echo Model_Curso::getNombreCurso($oCurso['cur_codigo']);
    ?>
</th>
						<th><?php 
    echo Model_Tabladetabla::getNombreGrupo($oCurso['cg_codigo']);
    ?>
</th>
						<th><?php 
    echo Model_Tabladetabla::getNombreTipo($oCurso['cgt_codigo']);
    ?>
</th>
						<th><?php 
    echo Auth_Usuario::getNombre($oCurso['usu_usuario']);
    ?>
</th>
					</tr>
					<?php 
}
?>
				</tbody>