Not sure the title I gave this was appropriate, but I will try to describe my problem as best as possible.
Basically, I'm trying to find the correct url reference for the mkdir() function.
Let me type up a FTP Structure diagram to help:
{ROOT}
-inventory
-FF
-<I am here>
(/inventory/FF/index.php)
I'd like to create a directory in the inventory folder from the index.php file.
Example:
{ROOT}
-inventory
-<new folder>
-FF
-<I am here>
(/inventory/newFolder/)
So, having said that, what URL reference would I need to put in the mkdir() function?
I have tried the following:
mkdir("./inventory/newFolder/");
mkdir("../inventory/newFolder/");
mkdir("/inventory/newFolder/");
Thanks in advance for any help or tips