본문 바로가기

웹 개발 이야기73

[PHP] 그누보드 자동 로그인 풀릴 때 // 그누보드로 제작한 프로젝트에서 자동로그인 기능이 풀릴 때가 자주 발생하는데 그 때 사용하는 코드이다. 2023. 3. 9.
[MYSQL] 시도군구 데이터 모음 * sql_addr : 동 포함 * sql_addr_without_dong : 동 미포함 2023. 3. 9.
[MYSQL] 전체 국가 데이터 모음 CREATE TABLE IF NOT EXISTS `g5_nation` ( `idx` int(11) NOT NULL AUTO_INCREMENT, `nation` varchar(255) NOT NULL, `alpha_2` varchar(255) NOT NULL, `alpha_3` varchar(255) NOT NULL, PRIMARY KEY (`idx`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; INSERT INTO `g5_nation` (`idx`, `nation`, `alpha_2`, `alpha_3`) VALUES (1, '가나', 'GH', 'GHA'), (2, '가봉', 'GA', 'GAB'), (3, '가이아나', 'GY', 'GUY'), (4, '감비아', 'GM', .. 2023. 3. 8.
[JQUERY] 위도 경도 function getloc() { navigator.geolocation.getCurrentPosition(updateLocation_m, handleLocationError_m); } function updateLocation_m(position) { str_lat = position.coords.latitude; str_lng = position.coords.longitude; $('#comp_list').append("3"); //get_aound_hospital(str_lat,str_lng); } function handleLocationError_m(error) { alert('위치서비스를 허용해 주세요.'); //get_aound_hospital(str_lat,str_lng); $('#sub.. 2023. 3. 8.
[PHP] 텍스트자르고 말줄임표 붙이기 function text_dot($text, $len){ $text = strip_tags($text); if(strlen($text) 2023. 3. 8.
[JQUERY] 라디오버튼_선택된것과 안된것들 css 지정 $(document).on("click",".radio_label1",function(){ var selected_label = $(this); // 가까운 상위요소 검색 selected_label.closest('td').find(".radio_label1").each(function() { $(this).css("background-color","#ddd"); $(this).css("color","#000"); }); selected_label.css("background-color","#2facb2"); selected_label.css("color","#fff"); }); 2023. 3. 8.