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>
Re: How to make CKeditor functional?