Basically I've been trying to get CKEditor to post properly (which it does post) however I constantly get the first block of the message inserted as a duplicate on the bottom of the message.
so for instance:
<p style="text-align:start"><span style="font-size:14px"><span style="font-family:arial,helvetica,sans-serif">Well for starters, let
is the snippet that gets repeatedly inserted at the bottom of the body
and this is the top portion:
<p style="text-align:start"><span style="font-size:14px"><span style="font-family:arial,helvetica,sans-serif">Well for starters, let's talk about the website changes.</span></span></p>
how I am posting the data:
enews: CKEDITOR.instances.enews.getData(),
and how I am receiving the data:
if(isset($_POST)){ foreach($_POST as $key => $value){ $news[$key] = $value; } } $body = html_entity_decode($news['enews']);
I've been stumped for some time now on this one :/