Bøker om katt
|
$file = '/home/1/r/rasekatter/www/tekst/katteboker.txt';
$html ='';
if (file_exists($file)) {
$links = file($file);
$oldtitle = '';
for ($a = 0; $a < sizeof($links); $a++) {
list ($title, $url, $auth, $lang, $pic, $patt, $blob, $year, $buy) = explode("!!", $links[$a]);
if ($title != $oldtitle) {
$html .= " | Av $auth $blob $patt
| Utgitt: $year Sprakk: $lang |
| ";
$titles[$title] = 1;
}
$titles[$title] = 1;
}
}
echo $html;
?>
|
|