Good morning, friends.
I'm returning an html code through DB in php, when I echo the variable instead of executing the html code it displays as if it were a text does anyone know how to help me?
Thanks in advance,
<div class="papel" id="papel" style="margin-top:calc(297mm * <?php echo $i?>)!important;background-color:<?php echo $cor ?>">
<?php
$listagem = new Consulta();
$listagem->Conecta();
$retorno = $listagem->ConsultaDados('cf_codigo', 'dm_id', 'ASC','dm_id=71');
if(count($retorno) > 0) {
foreach ($retorno as $linha) {
// Ao executar essa linha, ao inves do codigo html na variavel ser executado, é é escrito.
echo $linha->dm_codhtml;
}
}
?>
</div>
Result: