I have a form where users can upload an image. I have another page which already works that then creates a directory and places the image in it. For some reason, when I copy that same code to my current page, it gives me the following error:
Warning: mkdir() [function.mkdir]: No such file or directory in /home5/ideapale/public_html/amatorders_final/user_char_upload.php on line 251
Here is the code it is referring to:
if (!file_exists("../upload/" . $order_id . '_' . $row['last_name'])) { //Checks if the directory already exists
mkdir("../upload/" . $order_id . '_' . $row['last_name'], 0755); //Creates a new directory with the order_id and Customer last name
}
I tried echoing out all those variables, so I know they work.
It seems pretty straighforward to me, so i'm not sure why the mkdir function isn't working for me on this page. Any ideas anyone?