PHP & MySQL fckeditor integration?
- by TaG
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>