keyword=EnCode(request("keyword"))
set rs=server.CreateObject("adodb.recordset")
sqlstr="select s.id,s.OrderNum ,s.fullPinyin,s.spotsName,(从 [tb_City] 城市中选择 city.cityName,其中 city.id=s.cityID) cityName,(case s.TimeInterval 当 1 时则为“夜间”,否则为“白天”结束) TimeInterval,s .teamPrice,s.fitPrice,s.editDate from tb_Spots s where s.useType=0"
if key<>"" then
sqlstr=sqlstr&" and (s.spotsName like '%"&keyword&"%' 或 s.contents like '%"&keyword&"%')"
end if
sqlstr=sqlstr&" order by s.OrderNum asc,s.id desc "
rs.open sqlstr,conn,1,1
$_REQUEST["参数名"],获取请求上来的参数
new PDO("mysql:host=数据库地址;dbname=表名","数据库账号","数据库密码");
prepare("要执行的sql语句")
fetchAll(PDO::FETCH_ASSOC);//获取结果数组
你这个是asp吧, 这个就是一个接收表单发送的数据,然后根据这个数据查询数据库。