keyword=EnCode(요청("키워드"))
set rs=server.CreateObject("adodb.recordset")
sqlstr="select s.id,s.OrderNum,s.fullPinyin,s.spotsName,( city.id=s.cityID인 [tb_City] 도시에서 city.cityName 선택) cityName,(case s.TimeInterval when 1 then '夜间' else '白天' end) TimeInterval,s.teamPrice,s.fitPrice,s.editDate tb_Spots s에서 s.useType=0"
if 키워드<>"" then
sqlstr=sqlstr&" 및 (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죠? 폼에서 보낸 데이터를 받아 이 데이터를 기반으로 데이터베이스에 쿼리하는 방식이죠.