PHP & MySQL fckeditor integration?

Posted by TaG on Stack Overflow See other posts from Stack Overflow or by TaG
Published on 2010-03-30T05:04:59Z Indexed on 2010/03/30 5:13 UTC
Read the original article Hit count: 376

Filed under:
|
|

I just downloaded fckeditor and dropped the folder into my root directory but I don't know how to install the fckeditor into my forms for example, I wanted to integrate the fckeditor into the About Me and My Interests form fields in the form below, but I don't know how or even how to change the fckeditor skins. Can someone show me how to do this?

I'm using PHP and MySQL

Here is the html.

<form method="post" action="index.php">
    <fieldset>
        <ul>
            <li><label for="about-me">About Me: </label>
            <textarea rows="8" cols="60" name="about-me" id="about-me"></textarea></li>

            <li><label for="my-interests">My Interests: </label>
            <textarea rows="8" cols="60" name="interests" id="interests"></textarea></li>

            <li><input type="submit" name="submit" value="Save Changes" class="save-button" />
        </ul>
    </fieldset>

</form>

© Stack Overflow or respective owner

Related posts about php

Related posts about mysql