Hello,
I'm saving HTML code to a session variable:
$_SESSION["recuperarInvalido"] = "<p id='recuperarInvalido'> O e-mail introduzido é inválido! </p>";
But when typing the value of the session variable:
echo htmlentities($_SESSION["recuperarInvalido"]);
In the browser it looks like this:
<p id='recuperarInvalido'> O e-mail introduzido é inválido! </p>
But it should look like this:
O e-mail introduzido é inválido!