What is the best way to store users images using PHP and MySQL?

后端 未结 7 1434
生来不讨喜
生来不讨喜 2021-02-03 10:58

I was wondering what is the best way to store a users upload images like an avatar and so on using PHP and MySQL? Where should I begin? And is there a good article on this?

7条回答
  •  日久生厌
    2021-02-03 11:20

    Create a BLOB type field, and insert the result of file_get_contents( $ImageFile )

提交回复
热议问题