<?
echo "
<div id='bottom_menu'><a href='sitemap.html'>mapa strony</a>";
$sql= "select * from `pages` where jezyk=".$_SESSION['language']." and widoczna=1 and sidemenu=1 and menu=0 order by pozycja;";
$result = $db ->query($sql);
while ($row=$db->fetchrow())
{
echo"<a href='".$row['link'].".html'";
echo ">".$row['nazwa']."</a> ";
}
echo"
</div>
";
?>
Back to Directory