The forum operates in read-only mode. Please head to StackOverflow for support.
include_once "CKeditorFolder/ckeditor.php"; $CKEditor = new CKEditor(); $config = array(); $config['language'] = $language; $config['defaultLanguage'] = $default_language; $config['contentsLanguage'] = $row->language; $config['width'] = '100%'; $config['height'] = '450'; $config['resize_enabled'] = false; $CKEditor->editor("field_name", $text_to_put_in_area, $config);
Re: How to search this forum for dynamically changing cfg fi
http://docs.cksource.com/ckeditor_api/s ... onfig.html
include_once "CKeditorFolder/ckeditor.php"; $CKEditor = new CKEditor(); $config = array(); $config['language'] = $language; $config['defaultLanguage'] = $default_language; $config['contentsLanguage'] = $row->language; $config['width'] = '100%'; $config['height'] = '450'; $config['resize_enabled'] = false; $CKEditor->editor("field_name", $text_to_put_in_area, $config);