I'm trying to use pear for the first time. I'm using PHP 4.2 and IIs.
The problem I'm having is in setting the include path.
with only
Code: Select all
<body>
<?
include('Mail.php');
?>
</body>Warning: Failed opening 'Mail.php' for inclusion (include_path='.;c:\php4\pear') in D:\Websites\php\mailinglist\test2.php on line 14
even though I have changed the include_path in php.ini to:
.;c:\php\pear
, when i do phpinfo() though it shows up as:
.;c:\php4\pear
despite having changed it.
Do you have nay idea what I'm doing wrong?
Ferg