FCKeditor is currently my WYSIWYG online editor of choice
That’s right, I do believe that we do have a winner here with FCKeditor. Eveything is very well done and that it works on both IE and Firefox makes this much more a better online WYSIWYG editor for those who wish not to worry about manually adding their HTML tags when writing content to their website.
WYSIWYG is basically What You See Is What You Get and the FCKeditor can work among various languages for the world wide web. I have used the Javascript implimentation with the follow code which is easy to use:
Javascript Code:
<script type="text/javascript">
var oFCKeditor = new FCKeditor('FCKeditor1');
oFCKeditor.BasePath = "/path/to/FCKeditor/";
oFCKeditor.Create();
</script>
After uploading hte FCKeditor directory and inserting that bit of code in my form it allows for the editor to be used with very little effort.
If you are using PHP to do your form parsing/validation then just make sure your $_POST[] variable looks for whatever you name ‘FCKeditor1′ and you should be good to go.
There are also other ways in implimentating FCKeditor. There are options for running it server-side with such languages as PHP, ASP and even Perl.





