here is the code you would put it whatever.php to display the stuff in the file
<?
$file = fopen("file.txt","r");
$read = fread($file, filesize("file.txt"));
fclose($file);
list ($url, $description, $path) = explode ("|","$read");
echo "<a href=$url><img src=$path alt=$description border=0></a><br>\n - $description<br><br>\n";
?>
it would display it like this...
Image Here with link
- Description
Image Here with Link
- Description
and so on and so forth