Snippet

PHP에서 사용자 위치 구하는 방법

PHP에서 사용자 위치 구하는 방법 geocode: $geocode_stats = file_get_contents("http://maps.googleapis.com/maps/api/geocode/json?address=$country_name&sensor=false"); $output_deals = json_decode($geocode_stats); $latLng = $output_deals->results[0]->geometry->location; echo $lat = $latLng->lat; echo $lng = $latLng->lng; ipinfo: function ip_details($IPaddress) { $json = file_get_contents("http://ipinfo.io/{$IPaddress}"); …

PHP에서 사용자 위치 구하는 방법 Read More »

자바스크립트 프린트 윈도우 예제

자바스크립트 프린트 윈도우 예제 var printWindow = window.open('', '프린트 윈도우 예제', 'height=900,width=800'); printWindow.addEventListener("load", function() { alert("loaded"); }, false); printWindow.document.write('<html><head><title>프린트 윈도우 예제</title>'); printWindow.document.write( [ '<link rel="stylesheet" type="text/css" media="all" href="print.css" />', ].join('') …

자바스크립트 프린트 윈도우 예제 Read More »

조호메일 SMTP 설정하기

조호메일 SMTP 설정하기 비즈니스 메일 Outgoing Server Settings: (Organization users with a domain-based email address, you@yourdomain.com): Outgoing Server Name: smtppro.zoho.com Port: 465 with SSL or Port: 587 with TLS Require Authentication: Yes 개인 메일 Outgoing Server Settings: (Personal users with …

조호메일 SMTP 설정하기 Read More »

Scroll to Top