I wanted to use some of the selected features of the editor and for this i did changes, enter changed to br, but rest of thing that i removed are still intact.
Here is my code, Please help if you can
Regaeds,
dizyn
<?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>