Php + mysql implement unlimited classification | tree-based display of classification relationships

Source: Internet
Author: User

Unlimited classification is mainly implemented by storing the id and path of the upper-level classification. Because the structure of the data is simple, to display the classification relationship in a tree, I can only think of Recursive Implementation.


Unlimited classification is mainly implemented by storing the id and path of the upper-level classification. Because the data structure is simple, to display the classification relationship in a tree, I can only think of implementing it in a recursive way. below is the structure of the classification data table and a tree display function written by myself, I hope you can point out something wrong.
Table Structure: The id field is the category id, the name field is the category name, The father_id field is the id of the parent category, and the path field is the category path (the set of the ancestor of the category ), isdir is used to determine whether it is a directory (1 is yes, 0 is no ).

Display function:

Copy codeThe Code is as follows: // $ count indicates the classification level.
Sort_list ($ str, $ fatherid, $ count)
{
$ Rs = $ this-> SQL-> re_datas ("select * from sort where father_id = fatherid ");
$ Num = $ this-> SQL-> SQL _numrows ();
$ I = 0;
$ N = 1;
While (isset ($ rs [$ I])
{
$ Name = "";
For ($ n = 1; $ n <$ count; $ n ++)
{
$ Name. = "│ ";
}
If ($ I + 1 = $ num)
{
$ Name. = "example-". $ rs [$ I] [name];
}
Else
{
$ Name. = "example-". $ rs [$ I] [name];
}
If ($ rs [$ I] [isdir])
{
$ Str. = "<span style = 'color: # cccccc'>". $ name. "</span> ";
}
Else
{
$ Str. = $ name ";
}
$ Temp = $ count + 1;
$ Str = $ this-> sort_list ($ str, $ rs [$ I] [id], $ temp );
$ I ++;
}
Return $ str;
}

$ This-> the SQL object is an SQL operation object, the re_datas () function returns the queried array, and the SQL _numrows () function returns the queried number.

Call method: $ sort_list = sort_list ($ sort_list, 0, 1 );

The above are my personal thoughts. I hope you can give me more advice.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.