This is my first PHP attempt
I am trying to open a database connection via PEAR but there is a problem with the include_path. When I load the php page it tells me that DB.php cannot be included. It is included like
include( 'DB.php' );
and this is the error on the page
Warning: Failed opening 'DB.php' for inclusion (include_path='.;D:\php\;D:\php\pear\')
in G:\developers\projects\active\fhm_st\mit\tsd\scripts\st_srch.php
on line 170
If I put DB.php in the same directory as st_srch.php it sees the file and includes it. What is wrong???