Hello everyone i have question that can help me very much.
In php can we create a space limit to the folder that on server to upload the data in that particular folder.
please help me
thanx in advance.
Hello everyone i have question that can help me very much.
In php can we create a space limit to the folder that on server to upload the data in that particular folder.
please help me
thanx in advance.
You can fake it by checking how much stuff is in a folder before "accepting" a new upload, but PHP itself does not have any kind of quota support - that's done at the file system level by the the operating system PHP is running under.
Just substract the size of the current folder from the quota size and compare to the size of the uploaded file.