Virgola o parentesi non funziona:
<?php
$user = "root";
$pwd = "";
$host = "localhost";
$dbase = "test1";
$db = mysql_connect ($host, $user, $pwd) or die
("Impossibile connettersi al database!");
mysql_select_db ($dbase);
$id = $_GET['id_new'];
$sezione = $_POST['sezione'];
$titolo = $_POST['titolo'];
$img_new = $_POST['img_new'];
$FCKeditor1 = $_POST['FCKeditor1'];
$link1 = $_POST['link1'];
$link2 = $_POST['link2'];
$altro1 = $_POST['altro1'];
$altro2 = $_POST['altro2'];
$chiave_new = $_POST['chiave_new'];
mysql_query ("UPDATE news SET
sez_new= '$sezione',
titolo_new = '$titolo',
img_new = '$img_new',
test_new = '$FCKeditor1',
link1_new = '$link1',
link2_new = '$link2',
altro1_new = '$altro1',
altro2_new = '$altro2',
chiave_new = '$chiave_new' where id_new = '$id');
echo ("Inserimento avvenuto correttamente!");
?>