Ver Mensaje Individual
  #21 (permalink)  
Antiguo 18/03/2009, 08:54
Avatar de rompeguesos
rompeguesos
 
Fecha de Ingreso: marzo-2009
Mensajes: 692
Antigüedad: 15 años, 2 meses
Puntos: 8
Pregunta

No pone nada se qeda en blanco.

El mas.php es este:

Código PHP:
<?php 
include(""); // <-- aqui esta la conexion a la base de datos.

if(isset($_GET['not_ID'])){    
    
$not_ID $_GET['not_ID'];
    
$sqlQueryNot mysql_query("SELECT notTitulo, notTexto, not_ID, notCategoriaID FROM sn_noticias WHERE not_ID = $not_ID"$db_link) or die(mysql_error);
 
$rowNot mysql_fetch_array($sqlQueryNot);
    echo 
"<h2>$rowNot[notTitulo]</h2>";
    echo 
$rowNot['notTexto'];
    }
    
    echo 
"hola";
?>
necesitas algun otro codigo?

Última edición por GatorV; 18/03/2009 a las 11:40