将头像存储在mysql数据库中?
可能的重复:
在数据库中存储图像 - 是或否?
正在上传图片并将其存储在数据库中是跟踪头像的好方法 或者当人们上传图片时有更好的解决方案。
使用 jquery php 和 mysql
我没有这方面的经验,所以我该怎么做?
Thinadv,Richard
Possible Duplicate:
Storing Images in DB - Yea or Nay?
Is uploading a picture and storing it in the database a good way to keep track of avatars
Or is there a better solution when people are uploading a picture.
working with jquery php and mysql
I don't have experience in this so how would I go about it?
thinadv, Richard
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你想在数据库中存储文件,你可以使用 BLOB,它们有其优点和缺点。否则,您将存储路径并使用数据库中的路径填充图像标记的 src 属性。
If you want to store files in the db you would use a BLOB, they have their up's and downs. Otherwise you would store a path and populate the src attribute of the image tag with the path from the db.