CKEditor in CodeIgniter

后端 未结 7 856
别那么骄傲
别那么骄傲 2020-12-29 14:56

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

7条回答
  •  爱一瞬间的悲伤
    2020-12-29 15:22

    I found a sweetly simple 2-code-line explanation here: http://www.iprogrammerindia.in/how-to-integrate-ckeditor-in-codeigniter/#comment-73

    Just in case the link disappears I will paste the text here. This worked for me 8/1/14:

    Include this line in your view where you want to use ckeditor and place your ckeditor folder in root folder. Here i placed in js/ckeditor/ in root folder

    
    

    Next include the below line in the same view,

    'desc','id'=>'desc','class'=>"ckeditor")); ?>
    

提交回复
热议问题