Jump to content

FCKeditor problem


KORPZ

Recommended Posts

Hi there im having trouble with multiple fckeditors on one page.

It works for the first one but the rest following it give me errors.

 

                                        $oFCKeditor = new FCKeditor('applications');

$oFCKeditor->BasePath = "FCKeditor/";

$oFCKeditor->Value = $r['content'];

$oFCKeditor->Height = 445;

$oFCKeditor->Create();

 

Shouldnt the first line create a new instance of fckeditor?

If anyone can help me it would be greatly appreciated!

Cheers!

Link to comment
https://forums.phpfreaks.com/topic/52615-fckeditor-problem/
Share on other sites

Try like this

$oFCKeditor = new FCKeditor('applications_instant1');

               $oFCKeditor->BasePath = "FCKeditor/";

               $oFCKeditor->Value = $are['content'];

               $oFCKeditor->Height = 445;

               $oFCKeditor->Create();

$oFCKeditor = new FCKeditor('applications_instant2');

               $oFCKeditor->BasePath = "FCKeditor/";

               $oFCKeditor->Value = $are['content'];

               $oFCKeditor->Height = 445;

               $oFCKeditor->Create();

$oFCKeditor = new FCKeditor('applications_instant3');

               $oFCKeditor->BasePath = "FCKeditor/";

               $oFCKeditor->Value = $are['content'];

               $oFCKeditor->Height = 445;

               $oFCKeditor->Create();

 

Link to comment
https://forums.phpfreaks.com/topic/52615-fckeditor-problem/#findComment-259632
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.