Hello,
i used this code from your web pages but it doesn't work because output of this form are not correctly data.
<html> <head> <title>Sample CKEditor Site</title> <script type="text/javascript" src="/ckeditor/ckeditor.js"></script> </head> <body> <form method="post"> <p> My Editor:<br /> <textarea id="editor1" name="editor1"><p>Initial value.</p></textarea> <script type="text/javascript"> CKEDITOR.replace( 'editor1' ); </script> </p> <p> <input type="submit" /> </p> </form> <?php $editor_data = $_POST[ 'editor1' ]; echo $editor_data; ?> </body>
Could you someone help me with my problem and write me there code, which writes me a data just like there http://test.metalforever.info/ckeditor/ ... class.html
Code above is from http://test.metalforever.info/ckeditor.php/. You could see there that output of data isn't correct. Try to set any color and write it by submiting. It doesn't work. Thank you for your help...
Re: How to make CKeditor functional?