El Forum
12-31-2007, 06:31 AM
[eluser]Dsyfa[/eluser]
Hi,
I was able to successfully integrate FckEditor into CI as a form helper extension with the help of this post, thanks to flyer. The problem I'm facing now is that I cant seem to retrieve the value - I get an empty string.
Here's what I'm doing in my view file:
And in my controller function I'm doing this:
Where am I going wrong?
Thanks
Hi,
I was able to successfully integrate FckEditor into CI as a form helper extension with the help of this post, thanks to flyer. The problem I'm facing now is that I cant seem to retrieve the value - I get an empty string.
Here's what I'm doing in my view file:
Code:
<?
$introEditor_attrib = array(
'instanceName' => 'intro_text',
'Height' => 200,
'Width' => 700 );
echo form_fckeditor( $introEditor_attrib );
?>
Code:
$data[ 'intro_text' ] = htmlentities( $this->input->post( 'intro_text', true ) );
Where am I going wrong?
Thanks