keyword=EnCode(request("keyword"))
set rs=server.CreateObject("adodb.recordset")
sqlstr="select s.id,s.OrderNum ,s.fullPinyin,s.spotsName,(select city.cityName from [tb_City] city where city.id=s.cityID) cityName,(case s.TimeInterval when 1 then 'night' else 'White' end) 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吧, 這個是接收表單發送的數據,然後根據這個數據查詢資料庫。