Reputation: 49
I'm trying to put some values in the ckeditor textarea, like this:
<textarea name="notes" class="ckeditor" value="<?php echo $row['notes']; ?>" id="notes" rows="10" cols="80"></textarea>
It doesn't work. Any idea why? Version 4.
Thanks for your answers.
Upvotes: 0
Views: 46
Reputation: 714
you need to try with :
<textarea name="notes" class="ckeditor" id="notes" rows="10" cols="80"><?php echo $row['notes']; ?></textarea>
Upvotes: 1