我正在尝试使用PEAR的HTML_QuickForm,但我遇到了问题。出于某种原因,我的所有表单数据都是通过GET提交的,而不是POST。默认应该是POST,我已经尝试明确设置它。我唯一能弄明白的是,当我只是在表单上调用display()时它就能正常工作。我使用静态模板,出于某种原因,当我使用它时,它无法正常工作。我的代码如下所示。
<?php
include_once 'HTML/QuickForm.php';
include_once 'HTML/Template/Sigma.php';
include_once 'HTML/QuickForm/Renderer/ITStatic.php';
$form = new HTML_QuickForm('formtest', 'post');
$form->addElement('text', 'mytext');
$form->addRule('mytext', 'This is required', 'required');
$form->addElement('submit', 'mysubmit', 'This is a submit button');
$tpl = & new HTML_Template_Sigma('.');
$tpl->loadTemplateFile('template.html');
$renderer = & new HTML_QuickForm_Renderer_ITStatic($tpl);
$renderer->setRequiredTemplate('{label}<font color="red" size="1">*</font>');
$renderer->setErrorTemplate('<font color="red">{error}</font><br />{html}');
$form->accept($renderer);
$tpl->show();
?>
答案 0 :(得分:1)
没关系,我几乎立即意识到了这个问题。我的模板文件如下所示:
<html>
<head><title>Test Form</title></head>
<body>
<form>
{formtest_mytext_html}<br />
{formtest_mytext_label}<br />
{formtest_mysubmit_html}<br />
{formtest_mysubmit_label}<br />
</form>
</body>
</html>
问题是我的表单标签无法知道它应该是POST所以它总是默认为GET。相反,表单标签应该看起来像这样
<form {formtest_attributes}>
{formtest_attributes}当然是告诉表单自己发布的位。