Ver Mensaje Individual
  #1 (permalink)  
Antiguo 21/05/2010, 13:09
Avatar de ronnyra
ronnyra
 
Fecha de Ingreso: diciembre-2009
Mensajes: 173
Antigüedad: 14 años, 5 meses
Puntos: 1
ayuda con un href

hola amigos mi problema es el siguiente tengo el sgte codigo para realizar un listado de estudiantes; en la parte del href voy hacer para eliminar un registro pero a la hora de colocarlo asi me el sgte error:

Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in C:\AppServ\www\proyecto\listados_Inscripciones.php on line 177

por le agradesco su ayuda...

Código PHP:
<?php 
 
echo '<table width="899" border="0" align="center" cellpadding="0" cellspacing="0">';
  echo  
'<tr>
      <td width="108" height="21" bgcolor="#CCCCCC">Codigo</td>
      <td width="131" bgcolor="#CCCCCC">Codigo Inscripcion</td>
      <td width="452" bgcolor="#CCCCCC" align="center">Nombre</td>
      <td width="103" bgcolor="#CCCCCC">Acciones</td>
      <td width="105" bgcolor="#CCCCCC">Estado</td>
    </tr>'
;
    
    while (
$fila = @mysql_fetch_array($result3))
{
  echo 
'<tr>';    
  echo 
'<td>'.$fila['Cod_Est'].'</td>';
  echo 
'<td>'.$fila['Cod_Inscrip_Est'].'</td>';
  echo 
'<td align ="center">'.$fila['Nombre1'].' '.$fila['Nombre2'].' '.$fila['Apellido1'].' '.$fila['Apellido2'].'</td>';
  echo 
'<td><a href=estudiante/delestudiante.php?cod=<?=$fila["Cod_Inscrip_Est"]?> onclick=return confirmar('¿Está seguro que desea eliminar el registro?')>[Eliminar]</a></td>';
  echo 
'</tr>';
}
echo 
'</table>';
     

?>