- エーオーシステム コーポレートサイト
https://www.aosystem.co.jp/ - エーオーシステム プロダクトサイト
https://ao-system.net/ - レンタルサーバー
- バーチャル展示会
- ウェブカタログサービス
- 3Dグラフィック
- Android アプリ
- iOS (iPhone,iPad) アプリ
- Flutter開発
- プログラミング記録QuickAnswer
- 無料画像素材
- スカイボックス 3D SKY BOX
このページのQRコード
var _returnValues;
function postSend() {
var fd = new FormData();
fd.append('foo',1);
fd.append('bar','a');
var xhr = new XMLHttpRequest();
xhr.open('POST','foobar.php');
xhr.send(fd);
xhr.onreadystatechange = function(){
if ((xhr.readyState == 4) && (xhr.status == 200)) {
_returnValues = JSON.parse(xhr.responseText);
}
};
}
//foobar.php
$foo = isset($_POST['foo']) ? $_POST['foo'] : null;
$bar = isset($_POST['bar']) ? $_POST['bar'] : null;
//$result = //何らかの処理
print json_encode($result);
このページのQRコード
便利ウェブサイト
便利 Android アプリ
便利 iOS(iPhone,iPad) アプリ