[insert_php]
$src = file_get_contents('http://payment.ginza-plus.net/cardchange/comp?tx=' . $_GET['tx']);
//echo $src;exit;
if($src === 'ng' || $src === 'comp'){
header('Location: /');
exit;
}

$user = unserialize($src);
if(! $user){
header('Location: /');
exit;
}

echo '

'.htmlspecialchars($user['company_name'] . ' ' . $user['client_name']) .'様、カード情報の変更が完了致しました。次回決済より、ご登録頂きましたカードでご決済をさせて頂きます。
ご不明な点がございましたら メール:info@ginza-plus.net までお問い合わせください。

';

[/insert_php]