我正在尝试实现Php-form-builder类,但我得到了
Fatal error: Class 'Form' not found in C:\wamp\www\project\admin\newpost.php on line 18
我正在使用php 5.4.3运行apache 2.4.2请任何知道如何运行的人吗?
<?php
session_start();
error_reporting(E_ALL);
include("../PFBC/Form.php");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled</title>
<link rel="stylesheet" type="text/css" href="style/index.css" />
</head>
<body>
<?php
$form = new Form("layout_grid", 500);
$form->configure(array(
"view" => new View_Grid(array(2, 1, 3))
));
$form->addElement(new Element_Hidden("form", "layout_grid"));
$form->addElement(new Element_Textbox("Title:", "Title"));
$form->addElement(new Element_Textbox("First Name:", "FirstName"));
$form->addElement(new Element_Textbox("Last Name:", "LastName"));
$form->addElement(new Element_Textbox("City:", "City"));
$form->addElement(new Element_State("State:", "State"));
$form->addElement(new Element_Textbox("Zip Code:", "ZipCode"));
$form->addElement(new Element_Button);
$form->render();
?>
</body>
</html
>
答案 0 :(得分:0)
我猜你有namespaces
,
尝试:
$form = new PFBC\Form("layout_grid", 500);
你有PHP5.3的PFBC版本吗?
$form->addElement(new PFBC\Element\Hidden("form", "elements"));
答案 1 :(得分:0)
实现几乎相同的事情的方法更短。如果您使用PHP >= 5.3
你只需在页面顶部添加“use”关键字,就在session_start()之后
因此:
use PFBC\Form;
use PFBC\Element;
之后,您只需继续按照您已经完成的方式构建表单,您不需要在每行中添加额外的PFBC \。
这一切都在文档中。
如果您在5.3
之前使用任何版本的php,则需要下载备用软件包。