如何创建mysql php多级列表导航
基本上我希望能够创建一个多级导航(许多子导航)。显然,我知道这将通过创建彼此的列表来完成,但我非常坚持正确显示它的逻辑。
我看过有关父母/孩子关系的内容,但找不到任何有效且易于理解的内容。
我不需要知道 HTML 是如何构建的。 php/mysql 如何生成列表。
希望你能帮忙。
一个
Basically I want to be able to create a multi-level navigation (many sub navs). Obviously I know this will be done through creating lists with in each other but I am pretty stuck on the logic of displaying it correctly.
I have seen stuff regarding parent/children relationships but can't find anything that is efficient and easy to udnerstand.
I don't need to know how the HTML is built. Just how the php/mysql can generate the lists.
Hope you can help.
A
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果你指的是 HTML,它是这样的:
If you mean the HTML it's like this:
假设你知道如何创建一个充满 mysql 内容的表
假设您有下表:Universes >类别>市场>段
1) 列出选择中“Universes”的内容。当用户选择时,调用另一个 .php 脚本并向其发送所选 Universe 的 id(使用 GET 或 POST)
2) 列出“类别”的内容,其中 idUniverses = 您发送到第二个脚本的 id。
3) 市场也是如此...
使用 AJAX 更容易。
需要代码吗?
assuming you know how to create filled with the content of a mysql table
assuming you have the following tables : Universes > Categories > Markets > Segments
1) list the content of 'Universes' in a select. when the user picks, call another .php script and send it the id of the chosen Universe (using GET or POST)
2) list the content of 'Categories', WHERE idUniverses = the id you sent to the second script.
3) same for the Markets...
It's easier with AJAX.
need the code ?
这是我使用的代码。它构建具有无限级别子项的无序列表。
希望有帮助。
Here is code I used. It builds unordered list with unlimited level of subitems.
Hope that helps.
我认为最有效的方法是从数据库中一次性获取所有记录,然后在 php 中再次构建层次结构。
因此,您的数据库中将具有与此类似的结构:
然后您可以获取所有项目并使用递归函数构建一个分层数组,您可以循环遍历该数组以获取菜单、子菜单、子子菜单等。 项目。请参阅此问题和关于如何重建结构的前两个答案。
I think the most efficient would be to get all records in one go from the database and then build the hierarchical structure again in php.
So you would have a structure similar to this in your database:
Then you can get all items and use a recursive function to build a hierarchical array which you can loop through to get your menu, sub-menu, sub-sub-menu, etc. items. See this question and the top-two answers on how to re-build the structure.