OK so the save button is submitting your form on the page back to the same page.
Is that what you want? I guess the basic question is... what php have you put in place to save the data it is submitting? ckeditor within itself doesn't save anything, that is something you need to do. If you want to save into a database you can use any structure that you want for that database.
if you look in the _samples folder you will see a file - sample_posteddata.php which is called from the replacebycode.html example. There you can see they have set the form action to go to that page
on an aside..
if you want your editor instance to be blue you need to use this code as the stuff in the wiki is a big old typo (capital B for basic and no space between the # and the number for the colour)
Re: Attempting to Install/Intergrate CKEditor (v3) Help!
after
Re: Attempting to Install/Intergrate CKEditor (v3) Help!
Is that what you want?
I guess the basic question is...
what php have you put in place to save the data it is submitting?
ckeditor within itself doesn't save anything, that is something you need to do. If you want to save into a database you can use any structure that you want for that database.
if you look in the _samples folder you will see a file - sample_posteddata.php which is called from the replacebycode.html example.
There you can see they have set the form action to go to that page
on an aside..
if you want your editor instance to be blue you need to use this code as the stuff in the wiki is a big old typo
(capital B for basic and no space between the # and the number for the colour)
CKEDITOR.replace( 'editor1', { toolbar : 'Basic', uiColor : '#9AB8F3' });