<?php $latitude = '13.936523416667'; $longitude = '100.58507536111'; $geolocation = $latitude.','.$longitude; $request = 'http://maps.googleapis.com/maps/api/geocode/json?latlng='.$geolocation.'&sensor=false'; $file_contents = file_get_contents($request); $json_decode = json_decode($file_contents); if(isset($json_decode->results[0])) { $response = array(); foreach($json_decode->results[0]->address_components as $addressComponet) { if(in_array('political', $addressComponet->types)) { $response[] = $addressComponet->long_name; } } if(isset($response[0])){ $first = $response[0]; } else { $first = 'null'; } if(isset($response[1])){ $second = $response[1]; } else { $second = 'null'; } if(isset($response[2])){ $third = $response[2]; } else { $third = 'null'; } if(isset($response[3])){ $fourth = $response[3]; } else { $fourth = 'null'; } if(isset($response[4])){ $fifth = $response[4]; } else { $fifth = 'null'; } if( $first != 'null' && $second != 'null' && $third != 'null' && $fourth != 'null' && $fifth != 'null' ) { echo "<br/>Address:: ".$first; echo "<br/>City:: ".$second; echo "<br/>State:: ".$fourth; echo "<br/>Country:: ".$fifth; } else if ( $first != 'null' && $second != 'null' && $third != 'null' && $fourth != 'null' && $fifth == 'null' ) { echo "<br/>Address:: ".$first; echo "<br/>City:: ".$second; echo "<br/>State:: ".$third; echo "<br/>Country:: ".$fourth; } else if ( $first != 'null' && $second != 'null' && $third != 'null' && $fourth == 'null' && $fifth == 'null' ) { echo "<br/>City:: ".$first; echo "<br/>State:: ".$second; echo "<br/>Country:: ".$third; } else if ( $first != 'null' && $second != 'null' && $third == 'null' && $fourth == 'null' && $fifth == 'null' ) { echo "<br/>State:: ".$first; echo "<br/>Country:: ".$second; } else if ( $first != 'null' && $second == 'null' && $third == 'null' && $fourth == 'null' && $fifth == 'null' ) { echo "<br/>Country:: ".$first; } } ?>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง