<?php
include_once("fckeditor/fckeditor.php") ;
?>
<form action="sampleposteddata.php" method="post" target="_blank">
<?php
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = 'fckeditor/' ;
$oFCKeditor->Config['EnterMode'] = 'br';
$oFCKeditor->Config['ImageUpload'] = 'false';
$oFCKeditor->Config["ContextMenu"] = array('Generic','Link','Image','Select','Textarea','Checkbox','Radio', 'HiddenField','ImageButton','Button','BulletedList','NumberedList') ;
$oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ;
$oFCKeditor->Create() ;
?>
<br>
<input type="submit" value="Submit">
</form>
Fri, 08/08/2008 - 08:40
#1
