[insert_php]
$src = file_get_contents('http://payment.ginza-plus.net/firstpayment/comp?tx=' . $_GET['tx']);
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]



