コード例 #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['bday'])) {
    $bday = trim($_GET['bday']);
} else {
    $bday = "";
}
echo $wsc->UpdateBirthday($uniqueID, $bday);