ここに私のJavaScriptコードがあります
<script type="text/javascript">
var country,url;
country = geoip_country_code()
if(country=="US"){
url="http://www.site.org/index.php?user=php variable";
}
setTimeout("location.href = url;",5000);
</script>
$_GET['user']
現在のURLにユーザー名を取得するためのphp変数を配置する必要があります
これで試してみましたが、動作しません
if(country=="US"){
url="http://www.site.org/index.php?user=<?php echo $_GET['user']; ?>";
}