I want to host images that users upload to a website.
However I don't know how to store this on a website dataBase. I know how to use SQL however it would seem to be a poor idea to store 1mb+ images on a SQL server.
My question is this: If you had a system with accounts that upload images, would you create some sort of file system on the web server and use that in tandem with a SQL database?
For example on the webserver you would create a /accounts folder that has thousands of folders which contain image files. Then use SQL queries and such to find user names and associated folders?
Sorry if this is a dumb question, I just don't know what to search to figure out more about this kind of topic.