Ver Mensaje Individual
  #3 (permalink)  
Antiguo 01/12/2006, 05:22
Avatar de alllebor
alllebor
 
Fecha de Ingreso: septiembre-2006
Mensajes: 295
Antigüedad: 18 años, 3 meses
Puntos: 1
He hecho lo que me has dicho pero me sale un error, ayudame a ver si hago algo mal, por favor

Cita:
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /www/sites/1/iespana.es/a/l/alllebor/site/peli/index.php on line 88

Warning: mysql_free_result(): supplied argument is not a valid MySQL result resource in /www/sites/1/iespana.es/a/l/alllebor/site/peli/index.php on line 92
linia 88
Código PHP:
while($row mysql_fetch_array($result)) 
linia 92
Código PHP:
mysql_free_result($result); 

Código PHP:
[LEFT]<?php 
                           
include("conex.php"); 
                           
$link=Conectarse(); 
                           
$result=mysql_query("SELECT TOP 5 titulo FROM noticias ORDER BY id DESC ",$link); 
                        
?>
                        <?php       

                           
while($row mysql_fetch_array($result)) { 
                               
printf([COLOR="Red"]HE QUITADO EL CODIGO PARA NO MAREAR[/COLOR]); 
                        }[/
LEFT]