Skipjackrick Posted February 1, 2010 Share Posted February 1, 2010 So, I am trying to get the exif data to be displayed under each image I have saved. The image information is stored on the DB but i can't seem to figure out how to get this to work dynamically. Any Ideas? This is what I've got but obviously it doesn't work. <?php $directory = $_SERVER['DOCUMENT_ROOT']; $query="SELECT image FROM photos ORDER BY image_id DESC"; $result = mysql_query($query) or die(mysql_error()); while($row = mysql_fetch_array($result)) { $image = $row['image']; $kayakwars_details .=<<<EOD <tr> <td><img src='submitted_pics/$image' alt='$image' /><br /> $exif_data = exif_read_data ('' . $directory . '/submitted_pics/$image'); $emake =$exif_data['Make']; $emodel = $exif_data['Model']; $eexposuretime = $exif_data['ExposureTime']; $efnumber = $exif_data['FNumber']; $eiso = $exif_data['ISOSpeedRatings']; $edate = $exif_data['DateTime']; echo "Camera: $emake <br />Model: $emodel <br />Exposure: $eexposuretime <br />Focal Length: $efnumber <br />ISO: $eiso <br />Date and Time: $edate "; </td> </tr> EOD; } ?> Link to comment https://forums.phpfreaks.com/topic/190598-read_exif_data-question/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.