Jeff White
Jeff White

Reputation: 1

Can I submit a form with a ckEditor textarea using php?

I have a form with a text field for a title and a textarea, courtesy of ckEditor, for the message. Only the title is posted. What do I need to do to post the textarea value?

Upvotes: 0

Views: 863

Answers (1)

Guillaume Pommier
Guillaume Pommier

Reputation: 477

Check that your closing form tag is after the textarea.

Double check your textarea name attribute.

In case you are still in doubt, in the page mentioned in your form action attribute, paste the following code:

<pre>
POST DATA:
<?php print_r($_POST); ?>
GET DATA:
<?php print_r($_GET); ?>
</pre>

You should see your textarea data.

If not, please send your code for a more accurate answer...

Upvotes: 1

Related Questions