tomwerner: After playing with the formatting you suggested, I'm still having trouble. I'm not able to print out anything other than how it comes out of the box.
I have it set up here . I used your suggestions from the other post, but the don't seem to do anything. They are above and below "teststestststststst", and the table code is below that.
I'm obviously fairly new at PHP, and I really appriciate your patience with me.
The code for that page is below...
<HTML><BODY>
<?php
//This page just shows how you would use my library.
//Look in exif.php for more information
//Enjoy.
include('exif.php');
$path="libys.jpg";
$verbose = 0;
$result = read_exif_data_raw($path,$verbose);
echo "<PRE>";
print_r($result);
echo $result['IFDO']['DateTime']; # Echoes date + time of pic
echo $result['IFDO']['Make']; # Echoes Camera Manufacturer
echo "teststestststststst";
echo $result['IFDO']['DateTime']; # Echoes date + time of pic
echo $result['IFDO']['Make']; # Echoes Camera Manufacturer
print ("<TABLE><TR><TD>Manufacturer</TD><TD>{$result['IFDO']['Make']}</TD></TR>
<TR><TD>Date / Time</TD><TD>{$result['IFDO']['DateTime']}</TD></TR></TABLE>");
echo "</PRE>";
?>
<IMG SRC="thumb.php?path=<?=$path?>">
</BODY></HTML>