PHP to store images in MySQL or not?

前端 未结 16 2622
离开以前
离开以前 2020-11-28 05:56

I have built a small web application in PHP where users must first log in. Once they have logged in, I intend on showing a small thumbnail as part of their \"profile\".

16条回答
  •  迷失自我
    2020-11-28 06:22

    As everybody else told you, never store images in a database. A filesystem is used to store files -> images are files -> store them in filesystem :-)

提交回复
热议问题