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?
Create a BLOB type field, and insert the result of file_get_contents( $ImageFile )