ragazzi mi domandavo, ma è uguale mettere:

Codice PHP:
$nome mysql_escape_string(stripslashes(addslashes(htmlspecialchars($_POST['nome'])))); 
o dovrei fare cosi?
Codice PHP:
$nome mysql_escape_string($_POST['nome']);
$nome stripslashes($_POST['nome']);
$nome addslashes($_POST['nome']);
$nome htmlspecialchars($_POST['nome']);