


Three ways of infinite classification in PHP. Recursive calls of non-functions! _PHP Tutorial
There are roughly three ways to classify unlimited PHP,
1. The database performs unique indexing by setting the parent class ID, and then uses recursive calls of functions to achieve unlimited classification;
2. The database design is arranged in a specific format, and then uses mysql to query the key function: concat. The program implementation is relatively simple;
3. I don’t know much about the third type. It seems that algorithms and data structures are used for arrangement.
Today I will mainly share the second method. I found a lot of information at the beginning and it was indeed difficult to understand. But I finally figured it out, so I wrote down an essay, hoping that this article can help everyone.
1. Database design:
--
-- Table structure for table ` category`
--
CREATE TABLE IF NOT EXISTS `category` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`catpath` varchar(255) DEFAULT NULL,
` name` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ;
--
-- Dumping data for table `category `
--
INSERT INTO `category` (`id`, `catpath`, `name`) VALUES
(1, '0', 'Homepage'),
(2, '0-1', 'Linux OS'),
(3, '0-1', 'Apache server'),
(4, '0-1', 'MySQL database'),
(5, '0-1', 'PHP script language'),
(6, '0-1-2', 'Linux system tutorial'),
(7, '0-1-2 ', 'Linux network technology'),
(8, '0-1-2', 'Linux security basics'),
(9, '0-1-2-7', 'Linux LAMP' ),
(10, '0-1-3-10', 'apache Server');
It is explained here that the - link symbol of catpath is not fixed and can be selected; and other special symbols.
2. PHP code implementation:
$conn = mysql_connect ( 'localhost', 'root', '' );
mysql_select_db ( 'test', $conn );
mysql_query ( 'set names UTF8' );
$sql = "select id,concat (catpath,'-',id) as abspath,name from category order by abspath";
$query = mysql_query ( $sql );
while ( $row = mysql_fetch_array ( $query ) ) {
/**
* The first display method
*/
/*$space = str_repeat ( ' ', count ( explode ( '-', $row ['abspath'] ) ) - 1 );
echo $space . $ row ['name'] . '
';*/
/**
* The second display method
*/
$space = str_repeat ( ' ', count ( explode ( '-', $row [' abspath'] ) ) - 1 );
$option .= '';
}
echo '';
The rendering above:
There are several key points to note here:
1. The concat function is used in the database query field. If you don’t understand anything, you can google it.
2. The second place mainly uses str_repeat in php to cleverly set spaces.
If there are any errors, please email: chenghuiyong1987@gmail.com or leave a message

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

Validator can be created by adding the following two lines in the controller.
