echo '<br />'.utf8_encode($article["texte_article"]);
I would like to have the text to use a css class "art". $article is a table, and texte_article is the selected column in the database.
echo '<br />''<div class=\"art\">'.utf8_encode($article["texte_article"])</div>;
It was a try but didn't work. Do you know why my syntax doesn't work/where I should put the class "art" ?
echo '<br /><div class="art">'.utf8_encode($article["texte_article"]) . '</div>';