i want to use a rich textarea input field instead of the normal textarea input field in one of my projects with codeigniter. how can i do this? can anyone help? i am using codeigniter 2.1.0. i m familiar to this method of
<?php echo form_open('post_to_blog');?>
<?php echo form_textarea('blog','blog');?>
<?php echo form_submit('submit','submit');?>
<?php echo form_close();?>
but this only results a simple text area input field which returns plain texts. but i want the input texts to be rich and styled. help me up with this please.