搜索同个表 N个字段的值。
表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'];}
$sou[] 变量后边加了个 [] 符号代表什么意思?
代码它是一个数组
更正:
代表它是一个数组
空数组,然后 select 的结果赋值给他?
不是select的结果,是将那个sql串赋值给他。
$arr[]='xx' ; // 是在数组的后面加上一个值为xx的元素 索引从0,1,2,... 递增。

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



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.

Alipay PHP...

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

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

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,

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

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

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�...
