Jump to content

redirect help


486974

Recommended Posts

hi all,

 

i am using an Ip-to-country script which echos what country the user is from is there anyway once it comes up with the country of redirecting from that page to another e.g lets say user is from UK then they get redirected to a UK booking calendar if they are from the US they redirected to a US booking calendar

 

heres the script

 

<?php

if (getenv(HTTP_X_FORWARDED_FOR)=="") {

$ip = getenv(REMOTE_ADDR);

}

else {

$ip = getenv(HTTP_X_FORWARDED_FOR);

}

$numbers=explode (".",$ip);

$code=($numbers[0] * 16777216) + ($numbers[1] * 65536) + ($numbers[2] * 256) + ($numbers[3]);   

$lis="0";

$user = file("data.dat");

for($x=0;$x<sizeof($user);$x++) {

$temp = explode(";",$user[$x]);

$opp[$x] = "$temp[0];$temp[1];$temp[2];$temp[3];$temp[4];";

if($code >= $temp[0] && $code <= $temp[1]) {

$list[$lis] = $opp[$x];

$lis++;

}

}

if(sizeof($list) != "0") {

for ($i=0; $i<sizeof($list); $i++){

$p=explode(';', $list[$i]);

echo "You are from $p[4]";

}

}else{echo "Unable to determine your country"; }

?>

 

 

in the package is a DAT file aswell

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.