Home Backend Development PHP Tutorial A silly infinite classification_PHP tutorial

A silly infinite classification_PHP tutorial

Jul 13, 2016 pm 05:49 PM
include pos Classification unlimited

/**
* Unlimited categories
* 2011/8/23
* kcj
**/ 
include "../conn/conn.php"; 
$flpid=$_POST['flpid']; 
$fltitle=$_POST['title']; 
$fldes=$_POST['des']; 
if(isset($_POST['action'])!=''&&$_POST['action']="add"){ 
    $sql="insert into fenlei (flpid,fltitle,fldes) value('".$flpid."','".$fltitle."','".$fldes."')"; 
    mysql_query($sql); 
     

 
?> 
 
 
 
 
     
         
        无标题文档 
         
         
         
         
         
         
     
     
       

 
              后台管理->添加分类 
             
           
 
               
     
                       
  •  
                            上级栏目 
                               
                       
  •  
                       
  •  
                            栏目名称* 
                             
                       
  •  
                       
  •  
                            栏目描述 
                             
                       
  •  
                         
     
                       
  •  
                                
                             
                               
                             
                       
  •  
                   
  
           
 
                        
       
 
     
 
/**
* Unlimited categories
* 2011/8/23
* kcj
**/
include "../conn/conn.php";
$flpid=$_POST['flpid'];
$fltitle=$_POST['title'];
$fldes=$_POST['des'];
if(isset($_POST['action'])!=''&&$_POST['action']="add"){
 $sql="insert into fenlei (flpid,fltitle,fldes) value('".$flpid."','".$fltitle."','".$fldes."')";
 mysql_query($sql);
 
}

?>

 


 
  
  无标题文档
  
  
  
  
  
  
 
 
  


        后台管理->添加分类
     
   

    

         

  •       上级栏目
           
         

  •      

  •       栏目名称*
          
         

  •      

  •       栏目描述
          
         

  •      

         


  •         
          
           
          
         

  •     
 
   

                     
  

 

 
  

摘自 chaojie2009的专栏

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/478364.htmlTechArticle? /*** Unlimited categories * 2011/8/23 * kcj **/ include ../conn/conn.php; $flpid=$_POST[flpid]; $fltitle=$_POST[title]; $fldes=$_POST[des]; if(isset($_POST[action])!=$_POST[action]=add...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Analyze the usage and classification of JSP comments Analyze the usage and classification of JSP comments Feb 01, 2024 am 08:01 AM

Classification and Usage Analysis of JSP Comments JSP comments are divided into two types: single-line comments: ending with, only a single line of code can be commented. Multi-line comments: starting with /* and ending with */, you can comment multiple lines of code. Single-line comment example Multi-line comment example/**This is a multi-line comment*Can comment on multiple lines of code*/Usage of JSP comments JSP comments can be used to comment JSP code to make it easier to read

What is the difference between php include and include_once What is the difference between php include and include_once Mar 22, 2023 am 10:38 AM

When we write web pages using PHP, sometimes we need to include code from other PHP files in the current PHP file. At this time, you can use the include or include_once function to implement file inclusion. So, what is the difference between include and include_once?

What are the classifications of artificial intelligence? What are the classifications of artificial intelligence? Feb 19, 2021 am 11:22 AM

The classification of artificial intelligence includes cognitive AI, machine learning AI and deep learning. Artificial intelligence is a new technical science that studies and develops theories, methods, technologies and application systems for simulating, extending and expanding human intelligence.

How to use neural networks for classification in Python? How to use neural networks for classification in Python? Jun 04, 2023 pm 10:40 PM

When it comes to classifying large amounts of data, manually processing this data is a very time-consuming and difficult task. In this case, using a neural network for classification can do the job quickly and easily. Python is a good choice because it has many mature and easy-to-use neural network libraries. This article will introduce how to use neural networks for classification in Python. Neural Networks and Classification Before explaining how to use neural networks for classification, we need to briefly understand the concept of neural networks. Neural network is a

How to use Gaussian mixture model for classification in Python? How to use Gaussian mixture model for classification in Python? Jun 04, 2023 am 10:10 AM

This article will introduce the basic concepts and implementation methods of using Gaussian mixture models for classification in Python. What is a Gaussian mixture model? Gaussian Mixture Model (GMM) is a common clustering model, which is composed of multiple Gaussian distributions. When classifying data, these Gaussian distributions are used to model the data and determine each distribution in an adaptive manner. The category to which the sample belongs. The basic principle of GMM The basic principle of GMM is to treat the data set as a group of multiple Gaussian distributions

Detailed explanation of Linux system log file classification Detailed explanation of Linux system log file classification Feb 26, 2024 pm 02:33 PM

Linux system log files are important files that record various information generated during system operation. By analyzing log files, we can help us understand the operating status, troubleshooting, and performance optimization of the system. This article will deeply explore the classification and functions of Linux system log files, and combine it with specific code examples to help readers better understand. 1. Classification of Linux system log files 1. System log System log is a log file that records important events such as system startup, shutdown, user login, and shutdown. In Linux system

Image classification example in Python Image classification example in Python Jun 10, 2023 pm 03:43 PM

Python is a widely used programming language that is very popular in computer vision and image processing. In this article, we will explore image classification examples in Python. Image classification is a fundamental task in computer vision that involves identifying objects or scenes in images. This article will introduce how to use the deep learning framework Keras in Python to implement the training and prediction of image classification models. Preparation Before proceeding with image classification, we need to install the necessary software packages. Below is a list of necessary packages

What should I do if the Win10 desktop refreshes infinitely when I start it? Solution to infinite refresh of Win10 startup desktop What should I do if the Win10 desktop refreshes infinitely when I start it? Solution to infinite refresh of Win10 startup desktop Jul 08, 2023 am 09:33 AM

Recently, when some users were using the Win10 system, they found that sometimes the desktop would be automatically refreshed without stopping, and it would also refresh while we were watching videos and listening to music, which greatly affected the user experience. So What to do when the computer is turned on and the wireless network is refreshed? The editor below will tell you how to deal with the infinite refresh of the Win10 desktop when it is turned on. What should I do if the computer is turned on and the wireless network is refreshed? 1. After we enter the desktop, click the menu bar icon with the mouse. 2. Select [Resource Manager] in the opened interface. 3. After entering the page, click [Windows Task Manager] and select [End Task]. 4. After proceeding, return to the desktop and right-click the mouse to select the menu bar. 5. At this time, everyone clicks [luck]

See all articles