Ver Mensaje Individual
  #9 (permalink)  
Antiguo 03/12/2004, 19:37
Avatar de pereztroff
pereztroff
 
Fecha de Ingreso: junio-2002
Ubicación: En la Internet.
Mensajes: 4.068
Antigüedad: 21 años, 10 meses
Puntos: 5
cuando pongo el puntero en el link sale correctamente el valor asignado a la variable.........

en editar.php tengo:
Código PHP:
<?
include('../inc/conexion.php');
$select_notas mysql_query("SELECT * FROM noticias WHERE id=$id_notas");
if (!
mysql_query($select_notas)) {
  echo 
"Error en la consulta: $select_notas <br>";
  echo 
"MySQL dice: ".mysql_error();
  exit;

$nota mysql_fetch_array($select_noticias);
?>