Evenin guys
I have, what I hope is a fairly simple problem for someone.
The ínclude_path in my php.ini file is set to .:/usr/share/php
If I put a file called test.inc in that directory and then use include("test.inc"); it works fine.
Problem is I want to have different directories in that one like .:/usr/share/php/HTMLLIB/ and .:/usr/share/php/DATALIB/
I've tried these variations:
include("/HTMLLIB/a_file.inc");
include("./HTMLLIB/a_file.inc");
include("HTMLLIB/a_file.inc");
Why can't I make this work? I'm sure I'm missing something silly but can't see it?
Any help appreciated
Cheers
Nick