I have successfully loaded CKEditor into my editArticle.php page. However, I had a form there that had fields for Title, Summary, Content, and Publication Date. Each one of the fields corresponds to a category in my content table of my MySQL database. All I want to do is just replace the content text area, but when I plugged in:
<script type="text/javascript">
CKEDITOR.replace('content');
</script>
after the </textarea> tag of just the content field, but it swallowed up everything on the page including the title of the page, the logged in as, the logout link, the submit buttons, and all the other fields of the form. Can anyone help with this?
Thank you in advance!
<script type="text/javascript">
CKEDITOR.replace('content');
</script>
after the </textarea> tag of just the content field, but it swallowed up everything on the page including the title of the page, the logged in as, the logout link, the submit buttons, and all the other fields of the form. Can anyone help with this?
Thank you in advance!