KORPZ Posted May 23, 2007 Share Posted May 23, 2007 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! Quote Link to comment https://forums.phpfreaks.com/topic/52615-fckeditor-problem/ Share on other sites More sharing options...
jitesh Posted May 23, 2007 Share Posted May 23, 2007 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(); Quote Link to comment https://forums.phpfreaks.com/topic/52615-fckeditor-problem/#findComment-259632 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.