views:

287

answers:

2

Hey guys,

Am looking for a good and easy to use WYSIWYG HTML editor that i can integrate into a CMS that am currently developing for a client. Am developing the CMS in PHP and is web-based. The editor will have both visual and code view. Thanks for ur help.

+1  A: 

CKEditor is a good choice (http://ckeditor.com/)

I've also used TinyMCE.

Both will need to be heavily modified to fit your needs, but the nice thing is both are relatively easy to configure and integrate into just about any system.

PrairieHippo
A: 

CKEditor and TinyMCE are both fine editors.

I'd also add to the list:

  • NicEdit - which is very easy to integrate, but has a few drawbacks -- mostly that the editable area is in a div, not an iframe, so you can end up with some css leakage.
  • Xinha - which I've not really used, but it seems to be a fairly robust package.
timdev