Hoping you guys can help a noob out.
CKeditor3, ckfinder, various browsers (tried them all).
I hit the "save" button and ckeditor posts my data to my page beautifully. Unfortunately, many characters are replaced with ASCII code!!
So, <p> becomes <p>
This is a major setback for my little project. Is there setting where I can tell it to *stop* that???
Thanks in advance. I'm sure, as a newcomer to this type of platform, that it's something simple or basic.
CKeditor3, ckfinder, various browsers (tried them all).
I hit the "save" button and ckeditor posts my data to my page beautifully. Unfortunately, many characters are replaced with ASCII code!!
So, <p> becomes <p>
This is a major setback for my little project. Is there setting where I can tell it to *stop* that???
Thanks in advance. I'm sure, as a newcomer to this type of platform, that it's something simple or basic.
found it.
The page that received the posted form data had the following line:
$postedValue = htmlspecialchars( stripslashes( $value ) ) ;
Get rid of "htmlspecialchars()" and voila! Finally have what I'm looking for.