ho scritto una roba del genere
codice:
if (!get_magic_quotes_gpc()) 
{
$news = nl2br($_POST['news']);
} 

if (!get_magic_quotes_gpc()) 
{
$news = addslashes($_POST['news']);
} 
$query = "INSERT INTO ...
ma mi formatta tutto senza tener conto della funziona "nl2br" che manda a capo il testo,


please help