コード例 #1
0
<?php

include "ws_common.php";
$wsc = new ws_common();
error_reporting(0);
header('Content-type: application/json');
if (isset($_GET['uniqueID'])) {
    $uniqueID = trim($_GET['uniqueID']);
} else {
    $uniqueID = "";
}
if (isset($_GET['school'])) {
    $school = trim($_GET['school']);
} else {
    $school = "";
}
echo $wsc->UpdateSchool($uniqueID, $school);