Table of Contents
回复讨论(解决方案)
Home Backend Development PHP Tutorial 搜索同个表 N个字段的值。

搜索同个表 N个字段的值。

Jun 23, 2016 pm 02:10 PM



表1  字段1  字段2

 GET来一个值 name

  先搜索 字段1 如果没值,在搜索字段2。。这个有人有经验吗?


回复讨论(解决方案)



表1  字段1  字段2

 GET来一个值 name

  先搜索 字段1 如果没值,在搜索字段2。。这个有人有经验吗?

  如果字段1 搜索到N个结果,就循环N个结果,如果1个结果都没在搜索字段2,在循环字段2的值。

如果有 M 个字段,你就搜索 M 次?!
那你就在循环里搜索就是了
反正没有人会这么做的

依次判断下去就是了,不过就是麻烦点。

如果有 M 个字段,你就搜索 M 次?!
那你就在循环里搜索就是了
反正没有人会这么做的

只搜索2个字段,2个字段没搜到结果就退出了。

依次判断下去就是了,不过就是麻烦点。


有什么思路吗?swite 吗?

if  ... else 咯

if  ... else 咯

$n=$_GET['name']

$sou="select * from xclass where Name like '%$n%'";
$ss=$mysqli->query($sou);
while($s=$ss->fetch_assoc()){
    echo $z=$s['Name'];
}
//判断上边的z有没值,没值就搜索 字段2
if(isset($z)){
$zais="select * from xclass where Item1 like '%$n%'";
$zaiss=$mysqli->query($zais);
while($sss=$zaiss->fetch_assoc()){
    echo $zaisou=$sss['Item1'];
}
}


$n = $_GET['name'];$sou[] = "select * from xclass where Name like '%$n%'";$sou[] = "select * from xclass where Item1 like '%$n%'";foreach($sou as $sql) {  $rs = $mysqli->query($sql);  if($rs->num_rows) break;}while($sss = $rs->fetch_assoc()){    echo $zaisou=$sss['Item1'];}
Copy after login

$sou[]  变量后边加了个 [] 符号代表什么意思?

代码它是一个数组

更正:
代表它是一个数组 

空数组,然后 select 的结果赋值给他?

不是select的结果,是将那个sql串赋值给他。
$arr[]='xx' ;  // 是在数组的后面加上一个值为xx的元素  索引从0,1,2,... 递增。

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
4 weeks 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)

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Framework Security Features: Protecting against vulnerabilities. Framework Security Features: Protecting against vulnerabilities. Mar 28, 2025 pm 05:11 PM

Article discusses essential security features in frameworks to protect against vulnerabilities, including input validation, authentication, and regular updates.

Customizing/Extending Frameworks: How to add custom functionality. Customizing/Extending Frameworks: How to add custom functionality. Mar 28, 2025 pm 05:12 PM

The article discusses adding custom functionality to frameworks, focusing on understanding architecture, identifying extension points, and best practices for integration and debugging.

How to send a POST request containing JSON data using PHP's cURL library? How to send a POST request containing JSON data using PHP's cURL library? Apr 01, 2025 pm 03:12 PM

Sending JSON data using PHP's cURL library In PHP development, it is often necessary to interact with external APIs. One of the common ways is to use cURL library to send POST�...

See all articles