I wanna load CKEditor in CodeIgniter,I search a lot,but can\'t understand their way.
I placed ckeditor in application/plugins folder and now I wanna
You could otherwise do this:
Include the CKEditor files in your view file
<script src="<?php echo base_url(); ?>ckeditor/ckeditor.js"></script>
<link rel="stylesheet" href="<?php base_url(); ?>style/format.css">
finally your textarea in your html document
<textarea cols="80" id="edi" name="editor1" rows="10">
<?php echo $page_content->message1; ?>
</textarea>
<script>
CKEDITOR.replace('edi');
</script> </body>
This works great for me. Enjoy!