Aquí hay un error: (fijate en la variable $not+ID)
Código PHP:
<?php
$not_ID = $_GET['not_ID'];
mysql_query("SELECT * FROM sn_noticias WHERE ID = '$not+ID'", $db_link)
or die(mysql_error);
?>
debería ser: (fijate en la variable $not_ID)
Código PHP:
<?php
$not_ID = $_GET['not_ID'];
mysql_query("SELECT * FROM sn_noticias WHERE ID = '$not_ID'", $db_link)
or die(mysql_error);
?>
edito -> perdona hector, estaba editando no vi tu respuesta