I used addslashes for inputing the text to database right now.
the problem is when i pull the database and view it in the web, i got all the chars like :
\" \'
and no line break (BR)
how to fix that
is this the only way ?
$question = str_replace("\n", "<br>", $question);
$question = str_replace('\"', """, $question);
$question = str_replace("\'", "'", $question);