How to upload and show avatars in php? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T06:47:58Zhttp://stackoverflow.com/feeds/question/930182http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/930182/how-to-upload-and-show-avatars-in-php1How to upload and show avatars in php?H4cKL0rD2009-05-30T17:39:44Z2009-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#9301915Answer by Joe Lencioni for How to upload and show avatars in php?Joe Lencioni2009-05-30T17:43:08Z2009-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#9302920Answer by Utah_Dave for How to upload and show avatars in php?Utah_Dave2009-05-30T18:32:46Z2009-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>