Laurent Voiry
Laurent Voiry

Reputation: 49

Values in ckeditor

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

Answers (1)

Hardy Mathew
Hardy Mathew

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

Related Questions