Hi,
I've successfully intergraded fckeditor 2.6.4 on a php mysql site.
The Problem is after saving, the editor displays all the html code instead of display wysiwyg format.
example:
i format this text and save: text
after saving and refreshing the page, i get this:
I've successfully intergraded fckeditor 2.6.4 on a php mysql site.
The Problem is after saving, the editor displays all the html code instead of display wysiwyg format.
example:
i format this text and save: text
after saving and refreshing the page, i get this:
<b>text</b>
Re: HTML is displayed instead of WYSIWYG after saving
and changed
FCKConfig.CleanWordKeepsStructure = false;
to
FCKConfig.CleanWordKeepsStructure = true ;
but it's still not working
Re: HTML is displayed instead of WYSIWYG after saving
I think you're making a mistake in the code after you hit the "submit"-button.
If you use Php read my reply here: http://www.fckeditor.net/forums/viewtopic.php?f=6&t=14264
Re: HTML is displayed instead of WYSIWYG after saving
you said to add the following code to the script:
i'm a bit lost on where to paste the code.
My script looks something like this:
thank you so much for helping!
Re: HTML is displayed instead of WYSIWYG after saving
Re: HTML is displayed instead of WYSIWYG after saving
thank you for the reply. i actually got this fixed without having to add the 'pre' tags.
when the text on my script was saved to the database, it was decoded to specialhtml. i just had to comment out a couple lines on my code. thanks for the reply though