Could it be this easy?

$chopped= strlen($aFn) - 4;
$filename = $chopped.".txt";

print"<br><font face='Arial, Helvetica, sans-serif' size=2 color='#999999'>";
      include($filename);
print"</font>";

John Taylor-Johnston wrote:
I have http://www.flash-here.com/downloads/fhimage.html installed. I like it just the way it is.
But instead of displaying (see function below).
Instead of displaying the file name under the photo, weak excuse for a caption,
I would like to open and nl2br the contents of a like named text file.

$chopped= strlen($aFn) - 4;
$openthis = $chopped.".txt";

How do I proceed?
John

---original code----
   echo "<br><center>";
   if($aSubDir == "") {
     $l = strlen($aFn) - 4;
     echo substr($aFn, 0, $l);
   } else {
     echo $aSubDir."[dir]";
   }
   echo "</center>";


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to