Hi
How can I make an online editer for article submission
like this one:
http://takfekr.com/demo.htm
online editer
Moderator: General Moderators
If you want an editor with buttons like the link you posted, you will need to learn AJAX. This is basically xhtml, css, and javascript.
If you're comfortable with just using forms, all you'll really need to know is php, mysql, and xhtml.
I recently built my own site editor just so that I could have the experience doing so. I went with the latter route, and it took me about 2 days to build something that was easy to use, understand, and upkeep...and I'm brand new to php (If you'd like to see a sample, shoot me a pm).
If you're comfortable with just using forms, all you'll really need to know is php, mysql, and xhtml.
I recently built my own site editor just so that I could have the experience doing so. I went with the latter route, and it took me about 2 days to build something that was easy to use, understand, and upkeep...and I'm brand new to php (If you'd like to see a sample, shoot me a pm).
FCKEditor is a right nightmare for sorting out paths to images if you install it on a different directory level to the pages displaying what you edit. It's only GPL for personal use, integrating it into a closed source site costs $375 (or $850 for a company wide license for lots of sites).
TinyMCE doesn't come with any serverside code, so handling images in an integrated way is a real pain. The code is LGPL which is ace, but the image and file upload modules that they include in their demos are commercial (and cost quite a lot actually).
SPAW2 ( http://www.spaweditor.com/ ) seems to be the best of the HTML editors I've checked out lately if you want something fast and (relatively) painless to integrate. Plus it's entirely GPL which is handy.
TinyMCE doesn't come with any serverside code, so handling images in an integrated way is a real pain. The code is LGPL which is ace, but the image and file upload modules that they include in their demos are commercial (and cost quite a lot actually).
SPAW2 ( http://www.spaweditor.com/ ) seems to be the best of the HTML editors I've checked out lately if you want something fast and (relatively) painless to integrate. Plus it's entirely GPL which is handy.