How can I set up a WYSIWYG editor in PHP and have it store a formatted blog post into the MySQL database? Thanks
Hi, You should read instruction for you WYSIWYG editor how to integrate. example for CKeditor: http://docs.cksource.com/CKEditor_3.x/Developers_Guide/Integration then in php you will get variable from $_POST[$var] or $_GET[$var] and insert in database
Awesome, thanks for showing me this! Tiny MCE seems to be the thing WordPress uses, which is EXACTLY what I was seeking!