That's pretty easy. Here's a really dumb throwaway nearly-one-liner.
PHP Code:
<?php
$data=explode("\n",file_get_contents("anus.txt"));
if ($data)
foreach ($data as $lines) {
$what = explode("|", $lines);
echo '<img src="'.$what[2].'"><br><a href="'.$what[1].'">'.$what[0].'</a>'
}
?>