This is a quick guide about integrating CKEditor Download CKEditor from here – https://ckeditor.com/ckeditor-4/download/ I downloaded the full version. Call the scripts in your code <script src=”ckeditor_full/ckeditor.js”></script> … … <textarea required id=”content” name=”content”><?php echo strlen($content) ? $content : “” ?></textarea><br/> <script> var editor = CKEDITOR.replace(‘content’); //CKEDITOR.instances[‘content’].setData(“”); CKFinder.setupCKEditor(editor); //see below – this is for the CKFinder… Continue reading CKEditor – WYSIWYG Editor for Web