我的菜单在我的一个目录中是一致的。例如,
主页 文档页面 照片页面
我希望能够在每个页面中包含这样的菜单,我就完成了。但是,这一次有点不同,因为即使目的地相同,各个页面生成的链接也必须不同。以gallery.php页面的链接为例:
From the Home page: <a href='galleries.php?id=<?=$id?>'>
From the Documents page: <a href='galleries.php?id=<?=$doc[lid]?>'>
From the Photos page: <a href='galleries.php?id=<?=$photo[lid]?>'>
From the Productss page: <a href='galleries.php??id=<?=$product[lid]?>'>
>
我现在正在做的是将菜单复制并粘贴到每个文件中,并根据需要更改 URL,但这不是一个非常令人满意的解决方案。如何在菜单本身中构建某种 if 语句,以便包含菜单的页面生成正确的链接?