So I have a file upload portion on my website where the user can upload any doc or docx folder. Heres my html code:
You need to check if the directory exists, and if not, create it.
if (!file_exists("Proposals/". $_SESSION["FirstName"])) { mkdir("Proposals/". $_SESSION["FirstName"]); }