Heim > Fragen und Antworten > Hauptteil
keyword=EnCode(request("keyword"))
set rs=server.CreateObject("adodb.recordset")
sqlstr="select s.id,s.OrderNum,s.fullPinyin,s.spotsName,( Wählen Sie city.cityName aus [tb_City] Stadt aus, wobei city.id=s.cityID) cityName, (case s.TimeInterval when 1 then '夜间' else '白天' end) TimeInterval,s.teamPrice,s.fitPrice,s.editDate von tb_Spots s wo s.useType=0"
if keyword<>"" then
sqlstr=sqlstr&" und (s.spotsName wie '%"&keyword&"%' oder s.contents wie '%"&keyword&"% ')"
end if
sqlstr=sqlstr&" order by s.OrderNum asc,s.id desc"
rs.open sqlstr,conn,1,1
NULL2018-07-10 11:17:25
$_REQUEST["参数名"],获取请求上来的参数
new PDO("mysql:host=数据库地址;dbname=表名","数据库账号","数据库密码");
prepare("要执行的sql语句")
fetchAll(PDO::FETCH_ASSOC);//获取结果数组