keyword=EnCode(request("keyword"))
set rs=server.CreateObject("adodb.recordset")
sqlstr="s.id,s.OrderNumを選択,s.fullPinyin,s.spotsName,([tb_City] city where city.id=s.cityID から city.cityName を選択) cityName,(case s.TimeInterval when 1 then '夜间' else '白天' end) TimeInterval,s tb_Spots からの .teamPrice,s.fitPrice,s.editDate where s.useType=0"
if キーワード<>"" then
sqlstr=sqlstr&" および (s.spotsName のような'%"&keyword&"%' または s.contents like '%"&keyword&"%')"
end if
sqlstr=sqlstr&" 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);//結果の配列を取得