Ver Mensaje Individual
  #87 (permalink)  
Antiguo 21/11/2009, 15:47
Avatar de Dragon_Mandarin
Dragon_Mandarin
 
Fecha de Ingreso: marzo-2005
Ubicación: Santiago de Chile
Mensajes: 231
Antigüedad: 19 años, 9 meses
Puntos: 14
Exclamación Respuesta: Sistema de Noticias (aporte)

Si está esto en el encabezado de la página más.php, no debieras tener problemas:

Código PHP:
<?php
require('Connections/db-cnx.php');
if(isset(
$_GET['not_ID'])){
   
$not_ID $_GET['not_ID'];
   
$sqlQueryNot mysql_query("SELECT not_ID, notTitulo, notTexto, catCategoria
                               FROM sn_noticias
                               WHERE not_ID = $not_ID"
$db_link)
                               or die(
mysql_error);                       
   while(
$rowNot mysql_fetch_array($sqlQueryNot)){
?>
Si te sale mysql_error, es porque cambiaste o los parámetros de la base de datos o de la programación de mas.php.

Ojo al piojo con eso.

Salu2,

Ricardo