0
Hello,
I am saving HTML code in a session variable:
$_SESSION["recuperarInvalido"] = "<p id='recuperarInvalido'> O e-mail introduzido é inválido! </p>";
But when typing the session variable value:
echo htmlentities($_SESSION["recuperarInvalido"]);
In the browser appears like this:
<p id='recuperarInvalido'> O e-mail introduzido é inválido! </p>
But you should show up like this:
O e-mail introduzido é inválido!
has already started the session?
session_start();
– Guilherme SpinXO
@Guilhermespinxo Yes, it’s started.
– Miguel