Link to home
Start Free TrialLog in
Avatar of roscoeh23
roscoeh23

asked on

Allternative to FCKEDITOR.

I need a php based alternative to FCKEDITOR.

It is a PHP WISIWIG page editor but I want something that edits the page and then saves it to a directory of my choice.

Thnaks
Avatar of Roonaan
Roonaan
Flag of Netherlands image

You can use tinyMCE (which is clientside javascript only) and write your own handlers for reading/writing to the filesystem.

TinyMCE transforms <textarea>'s into rich text / wysiwyg editor. You therefor use php to generate a <form> which has a <textarea> containing the contents of the file you like to edit. On submit you then read the updated content from the $_POST array and write it back to your file.

-r-
ASKER CERTIFIED SOLUTION
Avatar of adaoss
adaoss

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial