Hello Can You store an image in a Mysql DB and if so is it worth it?
And why whould you do it?
You can put any binary data in a blob field type.
Is it worth it? It depends on what the data is used for. If the database is shared by more than one server it might be useful.
There are many pro's and con's I'm sure.
What would you recommend better to store pictures on the server or on the database?
I would recommend storing the path to the image in the DB, and having the image itself on your server. Makes things simpler IMO.