php 里的查询语句 10
PHP里的查询语句。在ASP里查询提交:<inputname=keywordtype=textid="keyword"><selectname=choice><optio...
PHP里的查询语句。
在ASP里查询提交:
<input name=keyword type=text id="keyword" ><select name=choice>
<option value="products" selected>产品搜索</option>
<option value="article">信息咨询</option>
<option value="maple">实例搜索</option>
</select>
其中产品查询页
<%case "products"
if keyword<>"" then sqlwhere=sqlwher &" and name like '%"&keyword&"%'"
if keyword<>"" then sqlwhere=sqlwher &" and introduce like '%"&keyword&"%'"
Set rs=Server.CreateObject("ADODB.RecordSet")
strsql="select * from Product where id<>0 "&sqlwhere&" order by id asc
%>..............
在PHP里应该怎么样改写呢? 展开
在ASP里查询提交:
<input name=keyword type=text id="keyword" ><select name=choice>
<option value="products" selected>产品搜索</option>
<option value="article">信息咨询</option>
<option value="maple">实例搜索</option>
</select>
其中产品查询页
<%case "products"
if keyword<>"" then sqlwhere=sqlwher &" and name like '%"&keyword&"%'"
if keyword<>"" then sqlwhere=sqlwher &" and introduce like '%"&keyword&"%'"
Set rs=Server.CreateObject("ADODB.RecordSet")
strsql="select * from Product where id<>0 "&sqlwhere&" order by id asc
%>..............
在PHP里应该怎么样改写呢? 展开
1个回答
展开全部
基本和C语言一样,php语法非常简单
<?php
case
if($keyword!="")
{
$sqlwhere = 'sqlwher &"and name like \'%"&keyword&"%\'"';
$sqlwhere = 'sqlwher &" and introduce like \'%"&keyword&"%\'"' //这两句变量怎么都是sqlwhere?你没写错?
}
至于连数据库这个,看你的数据库不同php调用的方法不同,具体查php手册
$strsql = 'select * from Product where id<>0'.$sqlwhere.' order by id asc ';
其它的基本就是这个样子
?>
<?php
case
if($keyword!="")
{
$sqlwhere = 'sqlwher &"and name like \'%"&keyword&"%\'"';
$sqlwhere = 'sqlwher &" and introduce like \'%"&keyword&"%\'"' //这两句变量怎么都是sqlwhere?你没写错?
}
至于连数据库这个,看你的数据库不同php调用的方法不同,具体查php手册
$strsql = 'select * from Product where id<>0'.$sqlwhere.' order by id asc ';
其它的基本就是这个样子
?>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询