<html><head><title>Kaja og Marius' oppskrifter</title></head><body>
<h1>Kaja og Marius' oppskrifter</h1>
Kategorier:
<?
if ($dir = @opendir("data2"))
  {
     while (($file = readdir($dir)) !== false)
    {
       if ($file!="." && $file!="..")
       {
         @include "data2/".$file;
         $n=1;
         while (isset ($kategori[$n]))
         {
            $kat2[$m]=$kategori[$n];
            unset($kategori[$n]);
            $n++;
            $m++;
         }
       }
    }
  }
$n=1;
$kat3=array_unique($kat2);
foreach ($kat3 AS $n => $kat4)
  {
    echo " <a href=\"kat.php3?kat=$kat4\">$kat4</a>";
  }

?>
<br><a href=sok.php3>Søk</a>
<p>
<ul>
<?
  if ($dir = @opendir("data"))
  {
     while (($file = readdir($dir)) !== false)
    {
       if ($file!="." && $file!="..")
       { 
	 $oppliste[]=$file;
         //echo "<li><a href=\"enopp.php3?opp=$file\">$file</a>";
       }
    }
  }
asort($oppliste);
foreach ($oppliste as $file) echo "<li><a href=\"enopp.php3?opp=".urlencode($file)."\">$file</a>";
?>
</ul>
