Ver Mensaje Individual
  #29 (permalink)  
Antiguo 19/03/2009, 15:43
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Respuesta: Problemas con update url

Pues veo que ahí estas asignando $id, pero lo tienes definido antes? Porque no usas un echo simplemente fuera del parser de PHP:
Código php:
Ver original
  1. <?php      
  2.                 {echo '<option>'.$row["Nombre"];}
  3.               while($row = mysql_fetch_array($listado)){?>
  4.                <tr>
  5.                        <td align=center><?php echo $row['id']; ?></td>
  6.                        <td><?php echo $row["name"]; ?></td>
  7.                        <td><?php echo $row["description"]; ?></td>
  8.                        <td align=center><?php echo $row["size"]; ?></td>
  9.                        <td><a href="editar.html.php?id=<?php echo $row['id']; ?>">actualizar</a></td>
  10.                        <td><a href="eliminar.html.php?id=<?php echo $row['id']; ?>">Eliminar</a></td>
  11.                        </tr>
  12. <?php
  13.    }

Saludos.