getting values to fckeditor

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

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

getting values to fckeditor

Post by shivam0101 »

While editing, how to display the values in fckeditor?

Code: Select all

<?php
$fck_editor_value='Sample value';


	$oFCKeditor = new FCKeditor('sample','123');
	$oFCKeditor->BasePath = '/fckeditor/';
	$oFCKeditor->Height = '250';
	$fck=$oFCKeditor->CreateHtml();


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

Post by superdezign »

While editing what?
Post Reply