How to make directory within directory by php loop? Example: http://site_name/a/b/c/d First create a then b within a then c within b then .... Problem is here a
You can actually create nested folders with the mkdir PHP function
mkdir($path, 0777, true); // the true value here = recursively