I\'m trying to create a folder structure which has multi level sub folders. For example, I want to create a folder structure like \'Fruits/Edible/Seedless\'. I tried it with
Try using the recursive flag for mkdir($path, $chmod, $recursive)
From php.net= recursive Allows the creation of nested directories specified in the pathname. Defaults to FALSE.