묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
아래 소스를 이용하여 기간조회를 하고자 합니다.
2018.10.08 16:16
<?php
//$grant = Context::get('grant');
$mysql_host
=
'localhost'
;
$mysql_user
=
'root'
;
$mysql_password
=
'1234'
;
$mysql_db
=
'root_db'
;
$conn
= mysql_connect(
$mysql_host
,
$mysql_user
,
$mysql_password
);
$dbconn
= mysql_select_db(
$mysql_db
,
$conn
);
mysql_query(
"set names utf8"
);
// $query = "select * from event";
$query
=
"SELECT timestamp, sdate, edate FROM event where sdate <= '2018-07-23' AND edate >= '2018-07-24'"
;
$result
= mysql_query(
$query
);
?>
<strong>Search</strong>
<form method=
"post"
action=
"search.php"
>
Start Report
Date
: <input type=
"text"
name=
"sdate"
/>
End
Report
Date
: <input type=
"text"
name=
"edate"
/>
<input type=
"submit"
name=
"Submit"
value=
"Search"
/>
</form>
시작 날짜와 종료 날짜 기간을 수동 입력하고 DB에서 해당하는 값을 가지고 오게 하고 싶은데요.
저 소스로 부족한가요?
추가 문의로 search.php에는 어떤 내용이 들어가야하나요?
혹시 소스 아시는분 계시면 죄송하지만 소스 좀 짜주시면 감사하겠습니다 ㅠ
급하게 적용해야되어서요 ㅠ