FCK editor

JavaScript and client side scripting.

Moderator: General Moderators

Post Reply
shivam0101
Forum Contributor
Posts: 197
Joined: Sat Jun 09, 2007 12:09 am

FCK editor

Post by shivam0101 »

Hello,

I am using the following code to create fckeditor

Code: Select all

$oFCKeditor = new FCKeditor('essay','');
		$oFCKeditor->BasePath = '/FCKeditor/';
		
		echo $oFCKeditor->Create();
if i need it in a table how do i do it? It is appearing on top right now

Thanks
User avatar
superdezign
DevNet Master
Posts: 4135
Joined: Sat Jan 20, 2007 11:06 pm

Post by superdezign »

That seems like an extremely simple question. You just place the echo where you want the JavaScript to begin.

What's not working? What have you tried?
shivam0101
Forum Contributor
Posts: 197
Joined: Sat Jun 09, 2007 12:09 am

Post by shivam0101 »

i solved it. I should have used CreateHtml(), instead of Create(). The problem was with placement
Post Reply