Salve a tutti ....

ho questo piccolo problema ... sto cercando di creare un menų dinamico a partire da un array, ma il browser mi dā questo errore strano

Error in my_thread_global_end(): 1 threads didn't exit PHP Notice: Undefined offset: 5 in C:\Inetpub\wwwroot\akroma\functions.php on line 12 PHP Notice: Undefined offset: 5 in C:\Inetpub\wwwroot\akroma\functions.php on line 12
anche se poi il menų viene ricreato correttamente

questo di seguito č il codice che crea il menų:

<?php

$nav = array("Home","Galleria","Curriculum","Link","Conta tti");

// funzione per creare il menu di navigazione
function navigation()
{
for ($id = 0; $id <= count($nav); $id++)
{
echo "[*]<a href=\"index.php?id=".$nav[$id]."\">".$nav[$id]."</a>";
}
}
?>

Grazie per l' aiuto