Jump to content

FCKeditor


KORPZ

Recommended Posts

  • 3 weeks later...

You put this at the top of your code, put your relative or absolute path that points fckeditor.php

 

<?php
include("../FCKeditor/fckeditor.php") ;
?>

 

In text fields that you want to fck to appear just put this code. Again put your base path and name you want for you object(first line). If you put this again with another name you have you second fck editor. The first line is the name of your field variable. ;)

 

<?php
$oFCKeditor = new FCKeditor('main_gr') ;
$oFCKeditor->BasePath = '../FCKeditor/';
$oFCKeditor->Width  = '100%' ;
$oFCKeditor->Height = '580' ;
$oFCKeditor->Create() ;
?>

Link to comment
https://forums.phpfreaks.com/topic/53722-fckeditor/#findComment-276220
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.