sono un idiota...cmq adesso
Codice PHP:
<table align="center" cellspacing="0" cellpadding="0" width="90%" height="90%">
 
 <?php
  $name 
$_POST['name'];
  
$city $_POST['city'];
  
$email $_POST['email'];
  
$com$_POST['com'];
  if (
$com==NULL)
  {
   echo
"
   <tr>
   <td><a href=\"index.php?s=61\">Non Hai Inserito Un Commento!</a></td>
   </tr>
   "
;
  }
  else
  {
   
$db=mysql_connect($db_host,$db_user,$db_password) or die("Impossiblie Connettersi: " mysql_error());
   
mysql_select_db($db_name);
   
$new=mysql_query("INSERT INTO GUESTBOOK (ID,Data,Nome,Citta,Email,Commento,IP) VALUE ('',NOW(),'$name','$city','$email','$com','$_SERVER[\"REMOTE_ADDR\"]')") or die("Query Errata: " mysql_error());
   
mysql_close();
   echo
"<tr><td><a href=\"index.php?s=61\">Grazie!</a></td></tr>
   <tr><td><a href=\"index.php?s=61\">Il Tuo Commento è Stato Inserito</a></td></tr>
   "

  }
  
?>

</table>
ma ora c'è un nuovo errore

Parse error: parse error, unexpected T_CHARACTER, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/eccc/GBStore.php on line 28

le variabili nella parentesi di VALUE sono corrette (intendo gli apici)..credo che l'errore sia li...