You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 3, 2024. It is now read-only.
$mysqli = new mysqli('localhost', DB_ID, DB_PW, 'gabolga');
// 연결 오류 발생 시 스크립트 종료
if ($mysqli->connect_errno) {
die('Connect Error: '.$mysqli->connect_error);
}
$query = "SELECT tweet.tweet_id, name, lat, lng FROM my_map JOIN tweet ON my_map.tweet_id = tweet.tweet_id WHERE user_id = ".$access_token['user_id']." AND lat BETWEEN ".$latlng['swLat']." AND ".$latlng['neLat']." AND lng BETWEEN ".$latlng['swLng']." AND ".$latlng['neLng'];