How to upload and show avatars in php? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T06:47:58Z http://stackoverflow.com/feeds/question/930182 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/930182/how-to-upload-and-show-avatars-in-php 1 How to upload and show avatars in php? H4cKL0rD 2009-05-30T17:39:44Z 2009-05-30T18:32:46Z <p>Ok i want to load a Avatar with my users regso they can upload and make a profile page i have user reg and everything and im using a flat file in php?</p> http://stackoverflow.com/questions/930182/how-to-upload-and-show-avatars-in-php/930191#930191 5 Answer by Joe Lencioni for How to upload and show avatars in php? Joe Lencioni 2009-05-30T17:43:08Z 2009-05-30T17:43:08Z <p>You should consider integrating an existing avatar service such as <a href="http://en.gravatar.com/" rel="nofollow">Gravatar</a> into your application. It might end up saving you and your users a bundle of time. From the Gravatar website:</p> <blockquote> <p>A gravatar, or globally recognized avatar, is quite simply an image that follows you from site to site appearing beside your name when you do things. Avatars help identify your posts on blogs and web forums, so why not on any site?</p> </blockquote> http://stackoverflow.com/questions/930182/how-to-upload-and-show-avatars-in-php/930292#930292 0 Answer by Utah_Dave for How to upload and show avatars in php? Utah_Dave 2009-05-30T18:32:46Z 2009-05-30T18:32:46Z <p>Just treat the avatar upload like any photo upload. Create an avatar/image upload form to upload the image to your server in the profile page.</p>