<?php
//===============================================
//	HTML-HEAD-
//	備考		：	
//	更新		：	2012/10/18 KMK-Teraoka
//===============================================
print "<html>";
print "<head>";
print "<meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">";
print "<link rel=\"stylesheet\" type=\"text/css\" href=\"/ansys/config/css/style.css\">";
print "<link rel=\"shortcut icon\" href=\"/ansys/config/favicon.ico\">";
print "<title>GEYEテスト</title>";
print "</head>";
?>


<script type="text/javascript">
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function()
{
 if(this.readyState == 4) {
     if (this.status == 200){
       data = this.response;
     }
 }
};
xhr.open("GET", "https://penta-02.ptgw.net/geye/pict", true); // POSTでも利用可能
xhr.responseType = 'json'; // これを指定しないと、responseにJSON文字列が返る
xhr.send();
</script>




<?php
//===========================
// 終端
//===========================
print "<hr />";
print "</body>";
print "</html>";
?>