se me esta perdiendo el primer elemento de cada grupo,
alguien me puede decir que tengo mal.
saludos!!
Código PHP:
$objempleado = new cEmpleado;
$consulta=$objempleado->consultar();
$i=0;
$aux=0;
$cuenta=1;
?>
<table style="border:1px solid #FF0000; color:#0000FF;width:800px;">
<?php
while($row=mysql_fetch_array($consulta))
{
if($i==$row[curso])
{
echo "<tr>";
//mediante el evento onclick llamaremos a la funcion PedirDatos(), la cual tiene como parametro
//de entrada el ID del empleado
echo "<td>".$cuenta."</td>" ;
echo "<td><a style=\"text-decoration:underline;cursor:pointer;\" onclick=\"pedirDatos('".$row[id]."')\">".$row[nombre]."</a></td>";
echo "<td>".$row[email]."</td>" ;
echo "<td>".$row[ciudad]."</td>";
echo "<td>".$row[pago]."</td>";
echo "</tr>";
echo $i."-";
}else {
$cuenta=0;
if($row[curso]=='1') $aux="<strong>1. </strong>";
if($row[curso]=='2') $aux="<strong>2. l</strong>";
if($row[curso]=='3') $aux="<strong>3. </strong>";
if($row[curso]=='4') $aux="<strong>4. </strong>";
if($row[curso]=='5') $aux="<strong>5. </strong> ";
if($row[curso]=='6') $aux="<strong>6. </strong>";
echo "<tr style='background:#999999'>";
echo "<td colspan='5'><div align='center'>".$aux."</div></td>";
echo "</tr>";
?>
<tr style="background:#cccccc;">
<td><strong>Curso </strong></td>
<td><strong>Nombre</strong> </td>
<td><strong>Email</strong></td>
<td><strong>Ciudad</strong></td>
<td><strong>Pago</strong></td>
</tr>
<?php
}
$i=$row[curso];
$cuenta++;
}
?>
</table>