FCKeditor - PHP - Sample 3

This sample shows how to change the editor toolbar.
Select the toolbar to load: 

BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value. $sBasePath = $_SERVER['PHP_SELF'] ; $sBasePath = substr( $sBasePath, 0, strpos( $sBasePath, "_samples" ) ) ; $oFCKeditor = new FCKeditor('FCKeditor1') ; $oFCKeditor->BasePath = $sBasePath ; if ( isset($_GET['Toolbar']) ) $oFCKeditor->ToolbarSet = htmlspecialchars($_GET['Toolbar']); $oFCKeditor->Value = '

This is some sample text. You are using FCKeditor.

' ; $oFCKeditor->Create() ; ?>