I'm trying to make a new directory in an existing one. I'm doing something like:
mkdir(existingfolder/existingfolder/newfolder, 0755, true);
However, this makes a whole new nested directory instead of putting "newfolder" within the existing folders. Do I have to navigate to the existing directories first or something?