Supplementing the question:
In the database it is recorded this way:
<p style="margin-bottom: 10px; padding: 0px; color: rgb(102, 102, 102); font-size: 12px;"><span style="margin: 0px; padding: 0px; line-height: 20px; color: rgb(97, 11, 90); font-family: Acme; font-size: 14px;"><strong style="margin: 0px; padding: 0px;">Produto feito 100% Artesanalmente com todo carinho e dedicação que as artesãs merecem.</strong></span></p><p style="margin-bottom: 10px; padding: 0px; color: rgb(102, 102, 102); font-size: 12px;"><span style="margin: 0px; padding: 0px; line-height: 20px; color: rgb(97, 11, 90); font-family: Acme; font-size: 14px;"><strong style="margin: 0px; padding: 0px;">Além de um item super útil para seu ateliê, pela sua elegância e sofisticação também é uma peça de decoração para o seu ateliê.</strong></span></p><p style="margin-bottom: 10px; padding: 0px; color: rgb(102, 102, 102); font-size: 12px;"><strong style="color: rgb(97, 11, 90); font-family: Acme; font-size: 14px; margin: 0px; padding: 0px;">Produto Exclusivo do Ateliê Cris Ramos.</strong><br></p><p style="margin-bottom: 10px; padding: 0px; color: rgb(102, 102, 102); font-size: 12px;"><span style="margin: 0px; padding: 0px; line-height: 20px; color: rgb(97, 11, 90); font-family: Acme; font-size: 14px;"><strong style="margin: 0px; padding: 0px;">Obs.: Alfinetes não estão incluídos</strong></span></p><p style="margin-bottom: 10px; padding: 0px; color: rgb(102, 102, 102); font-size: 12px;"><span style="margin: 0px; padding: 0px; line-height: 20px; color: rgb(97, 11, 90); font-family: Acme; font-size: 14px;"><strong style="margin: 0px; padding: 0px;"><br></strong></span></p><p style="margin-bottom: 10px; padding: 0px; color: rgb(102, 102, 102); font-size: 12px;"><span style="margin: 0px; padding: 0px; line-height: 20px; color: rgb(97, 11, 90); font-family: Acme; font-size: 14px;"><strong style="margin: 0px; padding: 0px;"><strong style="color: rgb(0, 0, 0); font-family: &quot;Open Sans&quot;, sans-serif; margin: 0px; padding: 0px;"><font color="#ff0000" face="Arial Black">Este produto pode ser trocado por 500 pontos do programa de fidelidade</font></strong><br></strong></span></p>
The Field in mysql is:
Name Field Type Glue
Description text utf8_general_ci
The php search I do is simple:
$sql3 = "SELECT `description` FROM `oc_product_description` WHERE `product_id` = '5'";
$query3 = mysqli_query($conn, $sql3);
while ($dados3 = mysqli_fetch_array($query3)) {
$descricao = strip_tags($dados3['description']);
}
In giving echo the result is this:
<p style="margin-bottom: 10px; padding: 0px; color: rgb(102, 102, 102); font-size: 12px;"><span style="margin: 0px; padding: 0px; line-height: 20px; color: rgb(97, 11, 90); font-family: Acme; font-size: 14px;"><strong style="margin: 0px; padding: 0px;">Produto feito 100% Artesanalmente com todo carinho e dedicação que as artesãs merecem.</strong></span></p><p style="margin-bottom: 10px; padding: 0px; color: rgb(102, 102, 102); font-size: 12px;"><span style="margin: 0px; padding: 0px; line-height: 20px; color: rgb(97, 11, 90); font-family: Acme; font-size: 14px;"><strong style="margin: 0px; padding: 0px;">Além de um item super útil para seu ateliê, pela sua elegância e sofisticação também é uma peça de decoração para o seu ateliê.</strong></span></p><p style="margin-bottom: 10px; padding: 0px; color: rgb(102, 102, 102); font-size: 12px;"><strong style="color: rgb(97, 11, 90); font-family: Acme; font-size: 14px; margin: 0px; padding: 0px;">Produto Exclusivo do Ateliê Cris Ramos.</strong><br></p><p style="margin-bottom: 10px; padding: 0px; color: rgb(102, 102, 102); font-size: 12px;"><span style="margin: 0px; padding: 0px; line-height: 20px; color: rgb(97, 11, 90); font-family: Acme; font-size: 14px;"><strong style="margin: 0px; padding: 0px;">Obs.: Alfinetes não estão incluídos</strong></span></p><p style="margin-bottom: 10px; padding: 0px; color: rgb(102, 102, 102); font-size: 12px;"><span style="margin: 0px; padding: 0px; line-height: 20px; color: rgb(97, 11, 90); font-family: Acme; font-size: 14px;"><strong style="margin: 0px; padding: 0px;"><br></strong></span></p><p style="margin-bottom: 10px; padding: 0px; color: rgb(102, 102, 102); font-size: 12px;"><span style="margin: 0px; padding: 0px; line-height: 20px; color: rgb(97, 11, 90); font-family: Acme; font-size: 14px;"><strong style="margin: 0px; padding: 0px;"><strong style="color: rgb(0, 0, 0); font-family: "Open Sans", sans-serif; margin: 0px; padding: 0px;"><font color="#ff0000" face="Arial Black">Este produto pode ser trocado por 500 pontos do programa de fidelidade</font></strong><br></strong></span></p>
Use
echo strip_tags($dados3['description']);
will print only the text.– Sam
Yes I had already used but it seems that he ignores this command the output is the same there I described above, very strange.
– Fabio Jonas Zech
I think you could put more information in the question. Puts a print of how it appears in the database and how it appears in inspecting browser elements, and how it is doing this
echo
in HTML. This problem can be because of mts things, and only with this information in the question becomes difficult to give any answer.– Sam