Haha !!! You both are VERY funny ... but I was told that my code needed to be thrown away, that is why I did not include it in the original thread ... Here is what I HAD ...
<?php
$dir = 'uploads/';
$base_url = '/home/mizzredd/public_html/uploads';
$newest_mtime = 0;
$show_file = 'BROKEN';
if ($handle = opendir($dir)) {
while (false !== ($file = readdir($handle))) {
if (($file != '.') && ($file != '..')) {
$mtime = filemtime("$dir/$file");
if ($mtime > $newest_mtime) {
$newest_mtime = $mtime;
$show_file = "$base_url/$file";
}
}
}
}
print '<img src="' .$show_file. '" alt="Image Title Here">';
?>
Either way, this still isn't working for me. Can anyone help ???