慕盖茨2165817
那你有时间可以帮我看一下这个代码改怎么修改吗?
<?php
require_once'HTML/QuickForm.php';
$form=new HTML_QuickForm('QuickForm');
$form->addElement('text','name','名字');
$form->addRule('name','用户名不能为空','required');
if($form->validate()){
$form->process('pass_hello');
}else{
$form->display();
}
function pass_hello($data){
print '你好,'.$data['name'];
}
?>
错应: Warning: require_once(HTML/QuickForm.php): failed to open stream: No such file or directory in D:\WAMPServer\wamp\www\phptext\phptext1\pear_text.php on line 2