Hi,
I noticed that when I don't enter any text in the ckeditor and I click the submit button, the following text gets returned: <br/> and and <p></p>. The problem is that I have to parse this text in code to see if it's really emtpy or not.
Is there some functionality included in the ckeditor that would quickly/easily allow me to see if the editor has actually some text in it or not (if it's empty).
Thank you.
I noticed that when I don't enter any text in the ckeditor and I click the submit button, the following text gets returned: <br/> and and <p></p>. The problem is that I have to parse this text in code to see if it's really emtpy or not.
Is there some functionality included in the ckeditor that would quickly/easily allow me to see if the editor has actually some text in it or not (if it's empty).
Thank you.

Re: Functionality for testing empty text?
<?php if($_POST['mytext'] == "<br/> <p></p>") // You may have to change the string between the " " to fit it correctly return false; else { Do your things } ?>.... something like that