I'm having trouble with CKEDITOR and i was hoping you could help me out.
I have this code inside a form tag:
<div class="column column-1">
<h3>Content</h3>
<textarea id="editor1" name="editor1" type="text"></textarea>
</div>
I applied the next javascript to make the ckeditor work:
CKEDITOR.replace("editor1");
So far so good the editor is showing in my browser i can type in it and all that good stuff.
Now i tried to work with it using PHP:
echo $_POST['editor1'];
If the user submits the form it should echo editor1
The problem is its not happening. I tried to run multiple tests but its just not showing me anything. If i do the same with a normal textarea (not a ckeditor one) just the standard textarea it works. WHen i do it with ckeditor it wont work.