CodeIgniter Forums
Ckeditor lost posting data - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24)
+--- Thread: Ckeditor lost posting data (/showthread.php?tid=66176)



Ckeditor lost posting data - gabrielbaroni - 09-15-2016

hi guys, i need help...

C.I don't get the post data after send with ckeditor, but textarea without id(ckeditor) are sending normal


please someone can help me?


RE: Ckeditor lost posting data - Diederik - 09-16-2016

Most common mistake is that the textarea does not have a name attribute.


RE: Ckeditor lost posting data - InsiteFX - 09-16-2016

PHP Code:
<!-- CKEditoryou just need to include the plugin (see at the bottom of this page) and add the class 'ckeditor' to your textarea -->
<!-- 
More info can be found at http://ckeditor.com -->
<div class="form-group">
 
   <label class="col-md-2 control-label" for="textarea-ckeditor">CKEditor</label>
 
   <div class="col-md-10">
 
       <textarea id="textarea-ckeditor" name="textarea-ckeditor" class="ckeditor"></textarea>
 
       <div class="help-block"><code>.ckeditor</code></div>
 
   </div>
</
div>


<!-- 
ckeditor.jsload it only in the page you would like to use CKEditor -->
<
script src="js/ckeditor/ckeditor.js"></script



RE: Ckeditor lost posting data - gabrielbaroni - 09-18-2016

guys thanks a lot for answer my topic.
the error was caused by the server, which had some blocking MOD