sql >> Database >  >> RDS >> Mysql

PHP &MySQL Categorieën weergeven van subcategorieën uit de database

Natuurlijk is het mogelijk. Deze code geeft een <ul> <li> . weer hiërarchische boomstructuur, ongeacht het aantal niveaus

<?php
  //Connect to mysql server
  $cn = mysql_pconnect("server", "username", "password");
  mysql_select_db("database_name");
  $rs = mysql_query("SELECT id, parent_id, category FROM categories", $cn);
  $childrenTree = array(); //Will store an array of children for each parent
  $categoryNames = array(); //Will store category name for each id
  //We fill $childrenTree and  $categoryNames from database
  while($row = mysql_fetch_array($rs)){
     list($id, $parent_id, $category) = $row;     
     $categoryNames[(string)$id] = $category;
     $parent_id = (string)$parent_id;
     if(!array_key_exists($parent_id, $childrenTree)) 
         $childrenTree[$parent_id] = array();
     $childrenTree[$parent_id][] = (string)$id;
  }

 //Main recursive function. I'll asume '0' id is the root node
 function renderTree($parent = "0"){
    global $categoryNames;
    global $childrenTree;
    if($parent != "0") echo "<li> ", $categoryNames[$parent], "\n";
    $children = $childrenTree[$parent];
    if(count($children) > 0){ //If node has children
       echo "<ul>\n";
       foreach($children as $child)
          renderTree($child);
       echo "</ul>\n";
    }
    if($parent != "0") echo "</li>\n";
 }
 renderTree();  //This renders the hierarchical tree
?>

De resulterende HTML voor uw voorbeeld zal zijn:

<ul>  
  <li> a & w
    <ul>
        <li> c & sometimes y </li>
        <li> d </li>
    </ul>
  </li>
  <li> b & f </li>
</ul>

Dat wordt weergegeven in een browser zoals deze:

  • een &w
    • c &soms
    • d
  • b &f

Ik herhaal, dit werkt voor elk niveau van nesten. Ik hoop dat dit helpt.




  1. MySQL-fout - #1062 - Dubbele invoer '' voor sleutel 2

  2. Een ORA 028513 DG4ODBC-fout onderzoeken

  3. Native wachtwoord gebruiken met MySQL 5.7

  4. Groeperen op maand en jaar in MySQL