Normal Text Field


Normal Textarea


FCKeditor - Default Toolbar Set
BasePath = '/FCKeditor/' ; // '/FCKeditor/' is the default value so this line could be deleted. $oFCKeditor->Value = 'This is some sample text.' ; $oFCKeditor->CreateFCKeditor( 'EditorDefault', '100%', 150 ) ; ?>
FCKeditor - Accessibility Toolbar Set
ToolbarSet = 'Accessibility' ; $oFCKeditor->Value = 'This is another test.
The "Second" row.' ; $oFCKeditor->CanUpload = false ; // Overrides fck_config.js default configuration $oFCKeditor->CanBrowse = false ; // Overrides fck_config.js default configuration $oFCKeditor->CreateFCKeditor( 'EditorAccessibility', '80%', 120 ) ; ?>

FCKeditor - Basic Toolbar Set
ToolbarSet = 'Basic' ; $oFCKeditor->Value = '

Another test.

' ; $oFCKeditor->CreateFCKeditor( 'EditorBasic', 300, 80 ) ; ?>