Ver Mensaje Individual
  #4 (permalink)  
Antiguo 20/03/2009, 12:01
majony
(Desactivado)
 
Fecha de Ingreso: diciembre-2008
Mensajes: 421
Antigüedad: 15 años, 4 meses
Puntos: 0
Respuesta: Que significa esto

Era simplemente para saber si me estan llegando bien mis datos pero no es asi
hice esto =
Código php:
Ver original
  1. $id = $_GET["id"];
  2.     $nombre_archivo  = $_GET["nombre_archivo"];
  3.         $description  = $_GET["description"];
  4.     echo $id;
  5.         echo $nombre_archivo;
  6.     echo $description;

Me llega todo menos el ID me sale asi la impresion

ID animaciones ANIMACIONES DE TODO TIPO

Pero lo que hago es esto en mi editar
Código php:
Ver original
  1. <?php
  2. include('conectar.php');
  3. $link = Conectarse();
  4. $result=mysql_query("Select * From archivos  ");
  5. while ($row=mysql_fetch_array($result)){
  6.  
  7.      ?>
  8.  
  9.  
  10. <html>
  11. <head>
  12. <title></title>
  13. </head>
  14. <body>
  15.  
  16. <form action="actualizar.php?id=<?php echo $row['id'] ?>" method="GET">
  17.     <input name="id" type="hidden" value="id" value="<?php echo "$id"; ?>"/>
  18.     <table align="center" border="1">
  19.  <?php }?>
  20.    <tr>
  21.  
  22.      <td> Nombre:</td>
  23.      <td> <input name="nombre_archivo" type="text" size="30" maxlength="70" ></td>
  24.    </tr>
  25.    <tr>