Ver Mensaje Individual
  #1 (permalink)  
Antiguo 07/06/2010, 15:09
Avatar de Most
Most
 
Fecha de Ingreso: marzo-2009
Mensajes: 642
Antigüedad: 15 años, 8 meses
Puntos: 6
NULL ID ¿que error tiene?

Hola, quisiera saver que error tiene este codigo, ya que yo no le veo ninguno, la variable $id me la saca como null :


Código HTML:
Ver original
  1. <title>pelis.php</title>
  2. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  3. </head>
  4.  
  5. <?php
  6. $connect=mysql_connect("_________","_______","________");
  7. var_dump($id);
  8. mysql_select_db("__________",$connect);
  9. $sql = "SELECT * FROM enlaces WHERE id = '$id'";
  10. $result = mysql_query($sql, $connect) or die (mysql_error());
  11.  
  12. while ($row = mysql_fetch_array($result)) {
  13.    $enlaces = $row['enlaces'];
  14.     $detalles = $row['detalles'];
  15.     $servidor = $row['servidor'];
  16.     $anio = $row['anio'];
  17.     $nombre = $row['nombre'];
  18.    $caratula = $row['caratula'];
  19.    $id=$row['id'];
  20. }
  21. ?>
  22.     <tr>
  23.         <td rowspan="4"><img style="width: 120px; height: 180px;" src="<? echo $caratula; ?>" /></td>
  24.         <td>
  25.             <table>
  26.                 <tr>
  27.                     <td><b>Nombre:</b> <? echo $nombre; ?></td>
  28.                 </tr>
  29.                 <tr>
  30.                     <td><b>Año:</b> <? echo $anio; ?></td>
  31.                 </tr>
  32.                 <tr>
  33.                     <td><b>Servidor:</b> <? echo $servidor; ?></td>
  34.                 </tr>
  35.                 <tr>
  36.                     <td><b>Detalles/sinopsis:</b><br><textarea style="width:480px; height:100px; padding:5px"><? echo $detalles; ?></textarea></td>
  37.                 </tr>
  38.             </table>
  39.         </td>
  40.     </tr>
  41. <b>Links de descarga:</b><br><textarea style="width:480px; height:100px; padding:5px"><? echo $enlaces ?></textarea>
  42. <?
  43. ?>
  44. </body>
  45. </html>

Última edición por Most; 07/06/2010 a las 15:27