我想使用php 表单生成器类。但我不能运行这个类。我使用如下(来自示例页面):
<?php
session_start();
require_once 'PFBC/Form.php';
$form = new Form("webeditors", 650);
$form->addElement(new Element_Hidden("form", "webeditors"));
$form->addElement(new Element_TinyMCE("TinyMCE:", "TinyMCE"));
$form->addElement(new Element_CKEditor("CKEditor:", "CKEditor"));
$form->addElement(new Element_Button);
$form->render();
?>
上述代码的结果:
但它必须如下所示:
PHP Designer 7 结果:
Javascript 错误控制台的输出:
Failed to load resource: the server responded with a status of 404 (Not Found) http://localhost/PFBC/Resources/tiny_mce/tiny_mce.js
Failed to load resource: the server responded with a status of 404 (Not Found) http://localhost/PFBC/Resources/ckeditor/ckeditor.js
Uncaught ReferenceError: tinyMCE is not defined
问题出在哪里。我无法理解。
同时,我正在使用 AppServ AppServ 2.5.10
有人说你需要下载 tinymce 和 ckeditor 并针对你的项目进行优化。但是pfbc已经具备了一切。