How do i use ckeditor.
I downloaded it, and extracted followed the guide on how to load and configure
ckeditor, but. It doesn't explain on how it saves. This is what is one the guide.
As stated above, the editor works just like a field. This means that when submitting a form containing an editor instance, its data will be simply posted, using the element name as the key to retrieve it.
For example, following the above example, we could create the following PHP code:
<?php
$editor_data = $_POST[ 'editor1' ];
?>
I don't know where to save this.
could someone provide a detailed howto?
Thanks in advanced :)
