Y es que tengo una vista que devuelve el curso en donde un grupo de estudiante esta cursando en una determinada ciudad y en determinado semestre.
dicha tabla se llena asi:
Nª. Cedula Nombres Apellidos Postgrado Ciudad Cohorte Trimestre Accion
En la columna accion precisamente hay 3 imagenes en cual realizan acciones diferentes, una de ella es inscribir dicho estudiante en el trimestre superior, el cual lo realiza perfectamente, pero YO QUIERO QUE UAN VEZ RELAIZE SU FUNCION LA IMAGEN DESAPARESCA PARA ESTE ESTUDIANTE DANDO A ENTENDER QUE EL ESTA INSCRITO EN EL TRIMESTRE SUPERIOR Y QUE QUEDE A LOS OTROS ALUNOS COMO NO SE A INSCRITO AL TRIMESTRE SUPERIOR, ES DECIR QUE SEGUN COMO VAYA CURSANDO EL TRIMESTRE APAREZCA O NO LA IMAGEN DE INSCRIPCION
E TRATADO DE CONFORMAR UNA CODIGO:
Código PHP:
<? foreach($vercurso as $nrg=>$estu): ?>
<tr>
<?php $cedula=number_format($estu['Estudiante']['cedula'],0,'.', '.');?>
<td><?php echo $contadorRegistro;?></td>
<td><?php echo $cedula;?></td>
<td><?php echo $estu['Estudiante']['nombre'];?></td>
<td><?php echo $estu['Estudiante']['apellido'];?> </td>
<td><?php echo $estu['Programa']['programa'];?></td>
<td><?php echo $estu['Ciudade']['ciudad'];?></td>
<td><?php echo $estu['Cohorte']['cohorte'];?></td>
<td><?php echo $estu['Trimestre']['trimestre'];?></td>
<?php if ($nrg==$contadorRegistro){?>
<td><?php echo $html->link($html->image('contents.gif', array('alt' => "VER PLANILLAS")),array('controller' => "estudiantes",'action' => "verplanilla",$estu['Estudiante']['id'].'/var1:'.$estu['Programa']['id']."/var2:".$estu['Trimestre']['id']."/exp:".$estu['Expediente']['id']."/post:".$vercurso[0]['Programa']['programa']."/ch:".$cohorte ),array(),NULL, false)." <b>|</b> ".$html->link($html->image('button_cancel.gif', array('alt' => '')),array('controller' => "estudiantes",'action' => "borrar",$estu['Estudiante']['id']."/post:".$vercurso[0]['Programa']['programa']),array(),"Desea Borrar", false)." <b>|</b> ".$html->link($html->image('flag_red.png', array('alt' => "VER PLANILLAS")),array('controller' => "estudiantes",'action' => "inscribirTrimetre",$estu['Estudiante']['id'].'/'.$estu['Programa']['id']."/".$estu['Trimestre']['id']."/".$estu['Ciudade']['id']."/".$estu['Cohorte']['id']."/".$nrg),array(),NULL, false);?></td>
<?php }else{ ?>
<td><?php echo $html->link($html->image('contents.gif', array('alt' => "VER PLANILLAS")),array('controller' => "estudiantes",'action' => "verplanilla",$estu['Estudiante']['id'].'/var1:'.$estu['Programa']['id']."/var2:".$estu['Trimestre']['id']."/exp:".$estu['Expediente']['id']."/post:".$vercurso[0]['Programa']['programa']."/ch:".$cohorte ),array(),NULL, false)." <b>|</b> ".$html->link($html->image('button_cancel.gif', array('alt' => '')),array('controller' => "estudiantes",'action' => "borrar",$estu['Estudiante']['id']."/post:".$vercurso[0]['Programa']['programa']),array(),"Desea Borrar", false)),array(),NULL, false);?></td>
<?php } ?>
<?php $contadorRegistro++;?>
</tr>
<?php endforeach;?>
GRACIAS ANTE SU CORDIAL AYUDA