So, I just moved from FckEditor to CKEditor. I'm using Php and I'm having a strange issue. Whenever I open my Project, when I open the page with CKEditor for the first time, it appears. Any time I load that page afterwards, it does not. Even if I close the browser and start over.
There appear to be no errors so I'm not quite sure how to Troubleshoot it. Here's the php code I use to load it.
<script type="text/javascript" src="ckeditor/ckeditor.js"></script> <- correct path for sure..
echo " <div>\n"; echo " <label for='FullText'>FullText:</label>\n"; echo " <div style='margin-left:210px;'>\n"; echo " <textarea name='editor1'>".$AddlInfo."</textarea>\n"; echo " </div>\n"; echo " </div>\n"; echo "<script>\n"; echo " CKEDITOR.replace('editor1');\n"; echo "</script>\n";
The resulting, non-finctioning HTML looks like this
<div> <label for='FullText'>FullText:</label> <div style='margin-left:210px;'> <textarea name='editor1'></textarea> </div> </div> <script>CKEDITOR.replace('editor1');</script>
Any help would be appreciated.
Thx