Hi all,
I have created a join script for customers and then another one for suppliers, created in a seperate directory within htdocs. The join page includes a config page, this inturn includes a functions page. The problem I am having is that the config page cannot call the functions page, even though all three files are in the same directory!
So the join form calls the config page like so:
include ("Supplier/supplierconfig.php");
This works fine, no errors.
In the config file I have:
include ("Supplier/supplierfunctions.php");
supplierfunctions is spelt correctly, its there, I can call it from a browser.
The error I get is "failed to open stream: No such file or directory "
Any ideas?