[PHP] PHP include dir

2002-11-13 Thread Mike D
How do I find the PHP include dir? I looked in the .ini file but it appears that the include dir directive is commented out, here it is: ; UNIX: /path1:/path2 ;include_path = .:/php/includes Do I need to uncomment this? Thanks Mike Mike Dunlop Webmaster - AWN, Inc. [E] [EMAIL PROTECTED] [P]

Re: [PHP] PHP include dir

2002-11-13 Thread BigDog
yeah, include_path =path this allows you to put scripts in other places out side the web document tree. For example: lets say you have configuration files that contain all your database passwords...you can put the document in a directory like /usr/local/php/config_scripts and add that directory

Re: [PHP] PHP include dir

2002-11-13 Thread Mike D
Good Skills - That precisely answered my question. Thanks! - MD On Wednesday, November 13, 2002, at 05:07 AM, BigDog wrote: yeah, include_path =path this allows you to put scripts in other places out side the web document tree. For example: lets say you have configuration files that

Re: [PHP] PHP include dir

2002-11-13 Thread Wayne McCloud
thanks very much [EMAIL PROTECTED] 11/13/02 18:12 PM yeah, include_path =path this allows you to put scripts in other places out side the web document tree. For example: lets say you have configuration files that contain all your database passwords...you can put the document in a directory