Reading EXIF or metadata from an uploaded photo taken by digital camera

Posted on Jan 31, 2012 | Leave a Comment

Meta data or EXIF data are generally embedded inside the header of a photo when it was taken by a digital camera or smartphone camera or scanners etc. Today I’ll show you how to read meta data or EXIF(Exchangeable image file format) data from an uploaded photo using PHP. The below code snippet is very simple. This will show you one upload form field. You can browse and upload a photo and our php code will read the... 

PHP File Upload Tutorial

Posted on Sep 08, 2010 | Leave a Comment

Here I’ll show you how to upload a file using PHP. The following code snippet is very simple. We have a html file where we have the file upload field is set with a submit button. The user has to browse a file (here we are allowing only photo of type either GIF or JPG) and click the submit button to upload the photo to a specific web directory. First I’ll give you HTML code snippet to generate the file upload... 

5 Useful PHP Functions You might need while doing PHP Coding

Posted on Jun 26, 2010 | Leave a Comment

Sending email using PHP mail function: function phpmail($mailto,$mailsubject,$mailbody,$mailfrom,$mailformat="",$bcc="") { if($mailformat=="html") { $headers = "MIME-Version: 1.0\r\n"; $headers .= "Content-type: text/html; charset=iso-8859-1\r\n"; $headers .= "From: $mailfrom\r\n"; } else { $headers... 
Page 1 of 11
Advertisement

Subscription

You can subscribe by e-mail to receive news updates and breaking stories.