OS: Win2k
PHP: 4.3.1
First time trying to use a Pear module.
Got it downloaded and installed the HTML_Table module.
I'm now trying to do the example from the Pear HTML_Table article, and when trying to display the page, I keep getting the error:
Warning: main(/HTML/Table.php) [function.main]: failed to create stream: No such file or directory in C:\Program Files\Apache Group\Apache2\htdocs\workspace\skureff\skudata.php on line 4
Fatal error: main() [function.main]: Failed opening required '/HTML/Table.php' (include_path='.;c:\php4\pear') in C:\Program Files\Apache Group\Apache2\htdocs\workspace\skureff\skudata.php on line 4
Which I think means it cannot find the module. I can see that the HTML table module is setup in my directory (c:\php\pear\HTML\Table.php) and I've double checked that my paths are set correctly. What could I be missing?
***Code snippit
<?php
include('../utility/common_db.inc');
//include the class
require_once("/HTML/Table.php");
$conn = db_connect();
// Request for parameters.
$offset = $_REQUEST['offset'];
$pgnum = $_REQUEST['pgnum'];
......
?>
TIA
Patrick