bonjour,

ma function (fil d'arianne) :

   <?php

    function fildarianise(&$titres, $separateur='<img style="display:inline-block;padding-top:2.1%;margin-left:.5em;" src="../img/fg.png" alt="fleche-right" width="20" height="30" /> ')
    {
     
       $baseUrl = 'htpp://'.$_SERVER['HTTP_HOST'];
       $retour = '<span class="ariane"><a href=' . $baseUrl . '>' . $titres[0] . '</a>';
       $chemin = explode("/", substr($_SERVER['PHP_SELF'], 1));
       
       if (is_array($chemin)) foreach ($chemin as $k=>$v) if ($titres[$v] !== false)
       {
          $baseUrl .= "/$v";
          $titre = isset($titres[$v]) ? $titres[$v] : $v;
          $retour .= $separateur . '<a href=' . $baseUrl . '>' . $titre . '</a>';   
       }
       $retour .= '</span>';
       return $retour;
    }

    $titres = array(0=>'accueil', 'cat1'=>'Catégorie 1', 'cat2'=>'Categorie 2', 'contact.php'=>'Contact', 'index.php'=>false);
    echo fildarianise($titres);

    ?>


pourquoi ces messages d'erreur...merci