I have instigated the ckeditor with jquery and this has worked previously however I have put the editor onto another two projects using the same settings and they have not been successful. Both of the projects use the form to post info to a php file, one of them will send all the information in the text editor however if it has been editied it will only send the original data that was in the editor. The other project will not post any data.
I wondered if it was because I had set the text area like:
However it does post the info on one and not the other. In the manual it says that the data should be returned to the text area on submission.
I wondered if it was because I had set the text area like:
<textarea name="text" id="text" class="frm_item" rows="10" cols="1"> <? echo($page_info['text']); ?> </textarea>
However it does post the info on one and not the other. In the manual it says that the data should be returned to the text area on submission.