Código PHP:
<?PHP
$sql = "UPDATE noticias SET titulo = ".$_POST['titulo'].", autor = ".$_POST['autor'].", fecha = ".$_POST['fecha'].", contenido = ".$_POST['contenido'].", nimagne = ".$_POST['nombre'].", imagen = ".$_POST['imagen'].", cat = ".$_POST['categoria']." WHERE id = " . $_GET["id"];
if ($titulo){mysql_query($sql,$db) or die( mysql_error() );}
?>
Postea el resultado que te da.