示例#1
0
			<table class="table table-striped table-bordered">
				<thead>
					<tr>
						<th>Curso</th>
						<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>