私は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 デザイナー 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にはすべてがあります。