我刚刚下载了FCKeditor并将文件夹拖放到我的根目录中,但是我不知道如何将FCKeditor安装到我的表单中。例如,我想将FCKeditor集成到下面表单中的About About(关于我)和My Interests(我的兴趣)表单字段中,但是我不知道如何甚至不愿更改fckeditor的外观。我该怎么做呢?
我正在使用PHP和MySQL。
这是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>
最佳答案
如果您使用的是PHP,这非常简单
<?php
include_once(“fckeditor/fckeditor.php”) ;
$sBasePath = $_SERVER[ 'PHP_SELF' ] ;
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = 'fckeditor/' ;
$oFCKeditor->ToolbarSet = 'Basic';
$oFCKeditor->Height = 200;
$oFCKeditor->Width = 400;
$oFCKeditor->Value = '<p>Now the FCKeditor is available and ready to use. So, just insert the following code in your p</p>' ;
$oFCKeditor->Create() ;
?>
将此代码放在您的html中。
有关更多详细信息,请转到我的博客中的文章:Basic FCKEditor Integration
关于php - PHP和MySQL的fckeditor集成?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2542966/