<?php

//var_dump($_REQUEST);

$gc = $_REQUEST["GC"];
$ec = $_REQUEST["EC"];

$url = "https://customer.gamecom.jp/CH/Event/Click.aspx?GC=".$gc."&EC=".$ec;

header("HTTP/1.1 307 Temporary Redirect");
header("Location: ".$url);

?>