New to PHP and SQL. Is it possible to create a folder on a web server and limit

  • Thread starter Thread starter trafficman2589
  • Start date Start date
T

trafficman2589

Guest
the size using PHP? New to php and sql...when a user signs up I want to create a custom folder on our server using their username and limit the size of the data allowed in that folder.

Is that even possible? Please help!?!
 
there is a php function called filesize(), for each folder check the size of each file, if adding the new file will exceed the max size then don't let them put the file in the folder and output a message.

Hope that helps.
 
Back
Top