ciao

ho fatto una query per l'inserimento dati utente in una tabella

codice:
$query = 'INSERT INTO sito_users (user_name, user_pwd, user_email) VALUES     ('.$_POST['user'].', '.$_POST['pass'].', '.$_POST['email'].')';
$ris = mysql_query($query,$conn) or die("Errore di inserimento dei dati: " . mysql_error());
ma da questo errore apparentemente sul campo email:

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 '@libero.it)' at line 1


cosa puo essere?

grazie