I have two working using the following method, and I don't see why it won't work for more.
<!-- This hidden field helps to resolve the issue of any double quotes in the returned value from the database --> <input type="hidden" name="hiddenFieldDefaultValueName" value="<?php echo $default_value; ?>"> <script type="text/javascript"> var oFCKeditor = new FCKeditor( 'InstanceName', '100%', '', 'Custom', document.formNameHere.hiddenFieldDefaultValueName.value) ; if ( ! document.all ){ oFCKeditor.Config['EnableXHTML'] = false ; } oFCKeditor.BasePath = "/pathto/fckeditor/" ; oFCKeditor.Create() ; </script>
Just repeat the code block and change the approriate values to create the new instances and field names to save and reload your data to the form.
RE: Multiple Text Areas
RE: Multiple Text Areas
RE: Multiple Text Areas
<!-- This hidden field helps to resolve the issue of any double quotes in the returned value from the database -->
<input type="hidden" name="hiddenFieldDefaultValueName" value="<?php echo $default_value; ?>">
<script type="text/javascript">
var oFCKeditor = new FCKeditor( 'InstanceName', '100%', '', 'Custom', document.formNameHere.hiddenFieldDefaultValueName.value) ;
if ( ! document.all ){ oFCKeditor.Config['EnableXHTML'] = false ; }
oFCKeditor.BasePath = "/pathto/fckeditor/" ;
oFCKeditor.Create() ;
</script>
Just repeat the code block and change the approriate values to create the new instances and field names to save and reload your data to the form.