My question is simple, I think.
I get via post the description:
$descricao = strip_tags(mysql_escape_string(trim($_POST['descricao'])));
And when I print on the screen I use:
nl2br($foto_user_visitado->descricao)
This should print on the screen the description recognizing the "enter" but as I put the strip_tags
function it does not show. How can I do it? and I want to escape all tags
html.