hi!
my php code is like this
$sBasePath = "/admin/"; $oFCKeditor = new FCKeditor( 'n_label' ) ; $oFCKeditor->BasePath = $sBasePath ; $oFCKeditor->Value = $row['n_label']; $oFCKeditor->Create() ; $sBasePath = "/admin/"; $oFCKeditor = new FCKeditor( 'n_content' ) ; $oFCKeditor->BasePath = $sBasePath ; $oFCKeditor->Value = $row['n_content']; $oFCKeditor->Create() ;