Currently I am using ckEditor with ckFinder in Symfony. When I save a form the HTML is saved (seemingly so) properly in the database. When I query through symfony and retrieve the results, the html tags are removed and replaced. Can I prevent this? Below is an example of what is in the database. I tried putting in what the HTML Shows but the current eidtor translates it
Database shows:
<p> Test</p> <p> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="quality" value="high" /><param name="movie" value="/uploads/flash/test1.flv" /><embed pluginspage="http://www.macromedia.com/go/getflashplayer" quality="high" src="/uploads/flash/test1.flv" type="application/x-shockwave-flash"></embed></object></p>
Actaul HTML (Note I replaced all ; with __ as the editor was translating it to the the above otherwise):
<_p>_ Test<_/p>_ <_p>_ <_object classid="_clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"__ codebase="_http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0&quot_&gt_&lt_param name="_quality"_ value="_high"_ />_<_param name="_movie"_ value="_/uploads/flash/test1.flv"_ />_<_embed pluginspage="_http://www.macromedia.com/go/getflashplayer&quot_ quality="_high"_ src="_/uploads/flash/test1.flv"_ type="_application/x-shockwave-flash"_>_<_/embed>_<_/object>_<_/p>__