unable to get the editor value. i am using the fck editor instead of textarea.
in case of textarea, it is easy to simply write the id and name like this.
<textarea rows="10" cols="10" name="try" id="try"></textarea>
we can easily get the id in this case.
but i am using fck editor. how can i assign id and name to it. name actually i know
include("fckeditor/fckeditor.php");
$content = $content_value ;
$hello = new FCKeditor('content1'); //content1 is the name ok
$hello->BasePath = '/new/modified_cms/login/fckeditor/';
$hello->Value = $content;
$hello->Create();*/
change line
$Html .= "<textarea name=\"{$this->InstanceNam
to
$Html .= "<textarea name=\"{$this->InstanceNam