怎么把通过fck编辑器中输入的文字存入到数据库里?
发布网友
发布时间:2024-10-04 11:16
我来回答
共2个回答
热心网友
时间:2024-10-04 12:22
文章内容是以文件,如TXT,DAT形式保存的..文件发在指定目录下..数据库只保存文件所在路径\文件名\文章名称..最多再保存些关键字,为检索提供方便.
热心网友
时间:2024-10-04 12:19
$editor = new FCKeditor('content');
$editor->BasePath = REMOTE_PATH_ROOT . 'static/fckeditor/';
$editor->Width = '100%';
$editor->Height = '320';
$editor->Value = $cinfo['content'];
$FCKeditor = $editor->CreateHtml();
上面是PHP使用FCK 编辑器的例子,希望可以给你灵感!
$editor = new FCKeditor('content'); 中的 content 就是输出到HTML中的表单(form)的一个参数(name="content")。
在处理提交表单的ASP中,POST过来的 content 值放在 SQL 语句中使用。