Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

wysiwyg pugin for php 1

Status
Not open for further replies.

electricphp

Programmer
Feb 20, 2008
71
US
I'm looking for some sort of freeware wysiwyg editor that could plug into a php page. Basically the client wnats all the text to be editable on the website. I figured the best way to do this is have a table in the mysql datbase with a field for each page and then, all the text could be edited via the wysiwyg editor and saved back to the table.

What is the simplest and most ellegant way to do this?
 
php is serverside. wysiwyg does not really have any bearing on php.

if you are looking for an html or javascript wysisyg editor then FCKEditor and TinyMCE get good press.
 
I guess I'm wondering how to take the generated html and insert in the database. I may post here again after I try FCKEditor.
 
these js editors pass back what's in them as part of a form. i.e. the data comes in to php as part of the $_GET or $_POST superglobal and can be handled like any string variable.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top