parece que ya lo pobre con alguien de mexico y si anda , pero al ponerle el default me da error :/
Parse error: syntax error, unexpected T_DEFAULT in /home/a8052892/public_html/verificacion1.php on line 40
Cita: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv=\"Refresh\" content=\"3 ; URL=redir.php\">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>verificacion</title>
<script>
alert('solamente verifica que la publicidad es acorde a tu pais . Muchas Gracias.');
</script>
<?php
include("geoiploc.php"); // Must include this
$ip = $_SERVER["REMOTE_ADDR"];
$nom=getCountryFromIP($ip, " NamE ");
switch ($nom) {
case "Ecuador":
?>
<meta http-equiv="REFRESH" content="0;url=http://ecuador.com">
<?php
break;
case "Uruguay":
?>
<meta http-equiv="REFRESH" content="0;url=http://uruguay.com">
<?php
break;
case "Argentina":
?>
<meta http-equiv="REFRESH" content="0;url=http://argentina.com">
<?php
break;
case "Mexico":
?>
<meta http-equiv="REFRESH" content="0;url=http://www.mexico.com">
<?php
break;
case default:
?>
<meta http-equiv="REFRESH" content="0;url=http://www.facebook.com">
<?php
break;
}
?>
</head>
<body >
</body>
</html>