Código PHP:
Ver original
<?php include "link.php"; $res=$_GET['id']; { $sql="SELECT * FROM noticiass WHERE id=$res"; print "$row[1]";?><br><?php print "$row[0]";?><br><?php print "$row[2]";?><br><?php } ?>
Al ejecutar el código me aparece el siguiente error:
Warning: mysql_fetch_row() expects parameter 1 to be resource, boolean given in C:\wamp\www\dario\Noticias\noti.php on line 9
Adicional:
Error en: SELECT * FROM noticiass WHERE id=[0]: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '[0]' at line 1
Verifiqué con un print si $_GET['id'] está siendo recibido correctamente y me muestra la posición del array que estoy enviando [0]. No tengo idea de cuál pueda ser el error :/