Good People I try to put a descriptive title.
I'll try my best to explain what problems.
I did a part of management in a news page.
Insert the editor CKeditor.
Then I save the contents in SQL.
All this seems to work well because if for example I keep text
with accents, bullets, spacing, justified text etc is well saved.
I mean, if I open the editor from another PC or browser text editor within me
shown as is storing.
With this I conclude that the editor is properly configured and also saves SQL thoroughly.
Now when I want to insert the content into a page without showing me what most of the format.
Lose the bullets. justified text but keeps the accents, the underlined letters.
I think pasting the code that displays the contents of the database could help me.
Codigo de noticia1.html
<html>
<head>
<title>NAMAS PHP</title>
<meta charset="UTF-8">
<link rel="stylesheet" type"text/css" hre="css/estilo.css"/>
<?php include("conexion.php"); ?>
</head>
<body>
<?php
//==============================UNICA VARIABLE A MODIFICAR===========================================
$tabla="textoPP";
//==============================UNICA VARIABLE A MODIFICAR===========================================
include("visor.php");
?>
</body>
</html>
and Now visor.php
<?php
$result=mysql_db_query($db_name,"select * from $tabla");
while ($row=mysql_fetch_array($result))
{
$contenido=$row[contenido];
}
echo $contenido;
?>
I try to change "<php echo $ content;?>" with "<php print $ content;?>" or "<p> <? php echo $ content;> </ p>"
No positive results.
Any tips?
From already thank you all people!

At first glance I'd wager it
At first glance I'd wager it's ACF doing its thing.
Customer and Community Manager, CKSource
Follow us on: Facebook, Twitter, LinkedIn
If you think you found a bug in CKEditor, read this!