
29/04/2009, 19:21
|
 | | | Fecha de Ingreso: julio-2008 Ubicación: localhost/colombia/sevillaValle.php
Mensajes: 1.123
Antigüedad: 16 años, 7 meses Puntos: 32 | |
Respuesta: error: Warning: mysql_fetch_array(): supplied argument is not a valid MySQ A ver intenta con este
include("../reg/config.php");
$not_ID=$_GET['not_ID'];
$estructura = "SELECT * FROM noticias WHERE not_ID = '$not_ID' ";
$sqlQueryNot = mysql_query($estructura, $db_link) or die(mysql_error());
$rowNot = mysql_fetch_array($sqlQueryNot);
echo "<h2>".$rowNot['titulo']."</h2>";
echo $rowNot['texto'];
echo $_GET['not_ID'];
?> |