Hello All!
I've installed PEAR on my ISP account using the following instructions:
http://www.modwest.com/help/kb5-274.html
I've installed the HTML_QuickForm package, but everytime I try to run a page with it, I get the error:
Fatal error: Cannot instantiate non-existent class: html_quickform_header in /pear/lib/HTML/QuickForm.php on line 566
Here's the page I'm using for testing:
www.binarythinking.com/ee/
And here's the code behind the page:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Testing PEAR HTML_QuickForm</title>
</head>
<body>
<?php
require_once "/pear/lib/HTML/QuickForm.php";
$form = new HTML_QuickForm('frmTest', 'get');
$form->addElement('header', 'MyHeader', 'Testing QuickForm');
$form->display();
?>
</body>
</html>
Thanks for any help you can give!