Hi, no that didn't solve it.
From my understanding the "." concatonates the string to provide the string for the directory path, yeah? So when provided with the semi-colon, which I percieve you are correct on, does that add it to the includes path as displayed by the error :
(include_path=';\PEAR;\framework;\classes;.;c:\php\includes;c:\Inetpub\wwwroot;c:\Inetpub\wwwroot\PEAR')
but wouldn't it still be wrong as ;\PEAR and ;\framework ;\etc are not valid path names, so I may as well supply the variables with the direct paths to these directories, like so :
$PEAR_DIR = 'C:\\Inetpub\wwwroot\PEAR' ;
$PHPLIB_DIR = 'C:\\Inetpub\wwwroot\framework';
$APP_FRAMEWORK_DIR = 'C:\\Inetpub\wwwroot\classes';
then would I need to use addslashes for the C:\ entry? So that the sting isn't commented out, and It still wouldn't create the portability of the famework that I want to create that may span different platforms.
Thanks for your time halojoy