次のように、アンカー機能を使用して動的ナビゲーション メニューを作成しようとしています。
<?
$nav_pages = array('prodouct' => 'Products/Shop',
'about' => 'About',
'contact' => 'Contact',
'press' => 'Press'
);
?>
<header>
<img src="img/my-logo.png" alt="logo" />
<nav>
<?
foreach($nav_pages as $link => $text){
anchor($link, $text);
}
?>
</nav>
</header>
しかし、これは結果です:
<header><nav></nav></header>
理由はありますか?(エラーは記録されません)