Hello, i'm using CKEditor in my CMS system to style pages. So basically i enter alot of html and save that to my database.
The problem is, that CKEditor formats my entire HTML which is causing problems. Example: suppose i have the following:
<input name="blaat" id="myid" value="something type="text" class="myclass" />
When i upload that it comes out like:
<input name="blaat" type="text" id="myid" class="myclass" value="something />
So it changes the place of all my attributes... It does alot more than that, because for some reason when i upload alot of html the page for some reason it breaks some of my code. It normally interacts with my javascript, but not anymore when i try to save it in my database with the CKEditor.
So my question is, is there a way to disable that autoformat that it is doing..??
The problem is, that CKEditor formats my entire HTML which is causing problems. Example: suppose i have the following:
<input name="blaat" id="myid" value="something type="text" class="myclass" />
When i upload that it comes out like:
<input name="blaat" type="text" id="myid" class="myclass" value="something />
So it changes the place of all my attributes... It does alot more than that, because for some reason when i upload alot of html the page for some reason it breaks some of my code. It normally interacts with my javascript, but not anymore when i try to save it in my database with the CKEditor.
So my question is, is there a way to disable that autoformat that it is doing..??
