Ip2country

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Ip2country

    hello, how do i install the flags or country name to the lavalair profiles, that people can see where people comming from how most i create that code for sql and index.php

    #2
    hello, how do i install the flags or country name to the lavalair profiles, that people can see where people comming from how most i create that code for sql and index.php[/b]

    heres a hint learn php
    Attached Files

    Comment


      #3
      thank u

      Comment


        #4
        brandon if your not going to add anything constructive to this post and just be a troll then dont bother posting

        and i think the wapdesire script has it in place but cant remember ive never added it to my old script

        Comment


          #5
          brandon if your not going to add anything constructive to this post and just be a troll then dont bother posting

          and i think the wapdesire script has it in place but cant remember ive never added it to my old script[/b]
          no wapdesire dont have it

          Comment


            #6
            oh wapside script has it in i remember i had add my own flag files when uploading it here just snatch it from there and edit accordingly to your needs

            Comment


              #7
              no wapdesire dont have it[/b]
              no i dont think its in there because its not i went through that script from head to foot i know all the codeing in it

              Comment


                #8
                its in that script as im using the functions from it to get country and network from ip lol

                Comment


                  #9
                  Code:
                  function ip()
                  {
                  if($_SERVER["REMOTE_ADDR"]){$ip=$_SERVER["REMOTE_ADDR"];}
                  else{$ip=$_SERVER["HTTP_X_FORWARDED_FOR"];}
                  if(strpos($ip,",")){
                  $exp_ip=explode(",",$ip);
                  $ip=$exp_ip[0];
                  }
                  return $ip;
                  }
                  
                  function ipinrange($ip, $range1, $range2)
                  {
                  $ip=ip2long($ip);
                  $range1=ip2long($range1);
                  $range2=ip2long($range2);
                  return (($ip >= $range1) && ($ip <= $range2));
                  }
                  
                  function network($ip,$opt)
                  {
                  $result=mysql_query("SELECT * FROM network ORDER BY subone, subtwo");
                  while($ranges=mysql_fetch_array($result)){
                  if(ipinrange($ip, $ranges[1], $ranges[2])){
                  if(is_file("flags/".$ranges["flag"])&&$opt==1){
                  $flag="<img src=\"flags/".$ranges["flag"]."\" alt=\"".$ranges["flag"]."\"/>
                  ";
                  }
                  return $flag.$ranges["isp"]." ".$ranges["country"];
                  }
                  }
                  }
                  Code:
                  echo "[b]network:[/b]
                  ".network(ip(),1);
                  and heres the sql i use

                  Code:
                  -- phpMyAdmin SQL Dump
                  -- version 2.11.0
                  -- [url]http://www.phpmyadmin.net[/url]
                  --
                  -- Host: localhost
                  -- Generation Time: Dec 03, 2007 at 03:05 PM
                  -- Server version: 4.1.22
                  -- PHP Version: 5.2.3
                  
                  SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
                  
                  --
                  -- Database: `aftadark_dump`
                  --
                  
                  -- --------------------------------------------------------
                  
                  --
                  -- Table structure for table `network`
                  --
                  
                  CREATE TABLE `network` (
                    `id` int(255) NOT NULL auto_increment,
                    `subone` text NOT NULL,
                    `subtwo` text NOT NULL,
                    `isp` text NOT NULL,
                    `country` text NOT NULL,
                    `flag` text NOT NULL,
                    PRIMARY KEY  (`id`)
                  ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=101;
                  
                  --
                  -- Dumping data for table `network`
                  --
                  
                  INSERT INTO `network` VALUES(1, &#39;149.254.0.0&#39;, &#39;149.254.255.255&#39;, &#39;T-Mobile&#39;, &#39;United Kingdom&#39;, &#39;uk.gif&#39;);
                  INSERT INTO `network` VALUES(2, &#39;196.11.239.0&#39;, &#39;196.11.246.255&#39;, &#39;MTN&#39;, &#39;South Africa&#39;, &#39;za.gif&#39;);
                  INSERT INTO `network` VALUES(3, &#39;59.88.0.0&#39;, &#39;59.99.255.255&#39;, &#39;BSNLNET&#39;, &#39;India&#39;, &#39;in.gif&#39;);
                  INSERT INTO `network` VALUES(4, &#39;218.248.0.0&#39;, &#39;218.248.255.255&#39;, &#39;BSNLNET&#39;, &#39;India&#39;, &#39;in.gif&#39;);
                  INSERT INTO `network` VALUES(5, &#39;196.200.0.0&#39;, &#39;196.207.255.255&#39;, &#39;Vodacom&#39;, &#39;South Africa&#39;, &#39;za.gif&#39;);
                  INSERT INTO `network` VALUES(6, &#39;203.145.131.0&#39;, &#39;203.145.131.255&#39;, &#39;Bharti Cellular&#39;, &#39;India&#39;, &#39;in.gif&#39;);
                  INSERT INTO `network` VALUES(7, &#39;203.145.128.0&#39;, &#39;203.145.128.15&#39;, &#39;Bharti Cellular&#39;, &#39;India&#39;, &#39;in.gif&#39;);
                  INSERT INTO `network` VALUES(8, &#39;203.145.188.128&#39;, &#39;203.145.188.135&#39;, &#39;Bharti Cellular&#39;, &#39;India&#39;, &#39;in.gif&#39;);
                  INSERT INTO `network` VALUES(9, &#39;202.56.231.112&#39;, &#39;202.56.231.127&#39;, &#39;Bharti Cellular&#39;, &#39;India&#39;, &#39;in.gif&#39;);
                  INSERT INTO `network` VALUES(10, &#39;203.145.159.32&#39;, &#39;203.145.159.47&#39;, &#39;Bharti Cellular&#39;, &#39;India&#39;, &#39;in.gif&#39;);
                  INSERT INTO `network` VALUES(11, &#39;58.104.0.0&#39;, &#39;58.111.255.255&#39;, &#39;Optus&#39;, &#39;Australia&#39;, &#39;au.gif&#39;);
                  INSERT INTO `network` VALUES(12, &#39;61.88.0.0&#39;, &#39;61.88.255.255&#39;, &#39; Optus&#39;, &#39;Australia&#39;, &#39;au.gif&#39;);
                  INSERT INTO `network` VALUES(13, &#39;58.145.128.0&#39;, &#39;58.145.159.255&#39;, &#39;Optus&#39;, &#39;Australia&#39;, &#39;au.gif&#39;);
                  INSERT INTO `network` VALUES(14, &#39;220.236.0.0&#39;, &#39;220.239.255.255&#39;, &#39;Optus&#39;, &#39;Australia&#39;, &#39;au.gif&#39;);
                  INSERT INTO `network` VALUES(15, &#39;41.208.0.0&#39;, &#39;41.208.63.255&#39;, &#39;MTN&#39;, &#39;South Africa&#39;, &#39;za.gif&#39;);
                  INSERT INTO `network` VALUES(16, &#39;196.3.94.0&#39;, &#39;196.3.94.255&#39;, &#39;MTC&#39;, &#39;South Africa&#39;, &#39;za.gif&#39;);
                  INSERT INTO `network` VALUES(17, &#39;147.110.0.0&#39;, &#39;147.110.255.255&#39;, &#39;Eskom&#39;, &#39;South Africa&#39;, &#39;za.gif&#39;);
                  INSERT INTO `network` VALUES(18, &#39;196.36.0.0&#39;, &#39;196.39.127.255&#39;, &#39;IS&#39;, &#39;South Africa&#39;, &#39;za.gif&#39;);
                  INSERT INTO `network` VALUES(19, &#39;208.131.160.0&#39;, &#39;208.131.191.255&#39;, &#39;Digicel&#39;, &#39;Jamaica&#39;, &#39;jm.gif&#39;);
                  INSERT INTO `network` VALUES(20, &#39;213.6.35.0 &#39;, &#39;213.6.40.255&#39;, &#39;PALTEL&#39;, &#39;Palestine&#39;, &#39;pl.gif&#39;);
                  INSERT INTO `network` VALUES(21, &#39;80.7.112.0&#39;, &#39;80.7.127.255&#39;, &#39;NTL&#39;, &#39;United Kingdom&#39;, &#39;uk.gif&#39;);
                  INSERT INTO `network` VALUES(22, &#39;117.96.0.0&#39;, &#39;117.99.255.255&#39;, &#39;Bharti Airtel&#39;, &#39;India&#39;, &#39;in.gif&#39;);
                  INSERT INTO `network` VALUES(23, &#39;212.141.0.0&#39;, &#39;212.141.255.255&#39;, &#39;WIND Telecom&#39;, &#39;Italy&#39;, &#39;it.gif&#39;);
                  INSERT INTO `network` VALUES(24, &#39;60.240.0.0&#39;, &#39;60.241.255.255&#39;, &#39;TPG&#39;, &#39;Australia&#39;, &#39;au.gif&#39;);
                  INSERT INTO `network` VALUES(25, &#39;192.118.8.0&#39;, &#39;192.118.11.255&#39;, &#39;Partner Communications&#39;, &#39;Israel&#39;, &#39;il.gif&#39;);
                  INSERT INTO `network` VALUES(26, &#39;41.242.0.0&#39;, &#39;41.242.255.255&#39;, &#39;TelKom&#39;, &#39;South Africa&#39;, &#39;za.gif&#39;);
                  INSERT INTO `network` VALUES(27, &#39;203.192.192.0&#39;, &#39;203.192.255.255&#39;, &#39;In2cable&#39;, &#39;India&#39;, &#39;in.gif&#39;);
                  INSERT INTO `network` VALUES(28, &#39;202.69.192.0&#39;, &#39;202.69.207.255&#39;, &#39;MTN (Virgin Media)&#39;, &#39;Sri Lanka&#39;, &#39;ce.gif&#39;);
                  INSERT INTO `network` VALUES(29, &#39;203.145.137.160&#39;, &#39;203.145.137.191&#39;, &#39;Idea Celular&#39;, &#39;India&#39;, &#39;in.gif&#39;);
                  INSERT INTO `network` VALUES(30, &#39;202.78.232.0&#39;, &#39;202.78.239.255&#39;, &#39;Alliance Braodband&#39;, &#39;India&#39;, &#39;in.gif&#39;);
                  INSERT INTO `network` VALUES(31, &#39;202.75.128.0&#39;, &#39;202.75.159.255&#39;, &#39;Maxis Communications&#39;, &#39;Maylaysia&#39;, &#39;my.gif&#39;);
                  INSERT INTO `network` VALUES(32, &#39;75.126.0.0&#39;, &#39;75.126.255.255&#39;, &#39;SoftLayer&#39;, &#39;United States&#39;, &#39;us.gif&#39;);
                  INSERT INTO `network` VALUES(33, &#39;72.29.64.0&#39;, &#39;72.29.95.255&#39;, &#39;Host Dime&#39;, &#39;United States&#39;, &#39;us.gif&#39;);
                  INSERT INTO `network` VALUES(34, &#39;217.113.74.0&#39;, &#39;217.113.74.255&#39;, &#39;CelTel&#39;, &#39;Belgium&#39;, &#39;be.gif&#39;);
                  INSERT INTO `network` VALUES(35, &#39;193.35.128.0&#39;, &#39;193.35.143.255&#39;, &#39;Orange&#39;, &#39;United Kingdom&#39;, &#39;uk.gif&#39;);
                  INSERT INTO `network` VALUES(36, &#39;164.100.0.0&#39;, &#39;164.100.255.255&#39;, &#39;Nicnet&#39;, &#39;India&#39;, &#39;in.gif&#39;);
                  INSERT INTO `network` VALUES(37, &#39;213.26.0.0&#39;, &#39;213.26.255.255&#39;, &#39;Telecomitalia&#39;, &#39;Italy&#39;, &#39;it.gif&#39;);
                  INSERT INTO `network` VALUES(38, &#39;198.54.202.0&#39;, &#39;198.54.202.255&#39;, &#39;Telkom&#39;, &#39;South Africa&#39;, &#39;za.gif&#39;);
                  INSERT INTO `network` VALUES(39, &#39;155.239.208.0&#39;, &#39;155.239.209.255&#39;, &#39;Telkom&#39;, &#39;South Africa&#39;, &#39;za.gif&#39;);
                  INSERT INTO `network` VALUES(40, &#39;41.241.0.0&#39;, &#39;41.241.255.255&#39;, &#39;TelKom&#39;, &#39;South Africa&#39;, &#39;za.gif&#39;);
                  INSERT INTO `network` VALUES(41, &#39;155.239.165.0&#39;, &#39;155.239.165.255&#39;, &#39;TelKom&#39;, &#39;South Africa&#39;, &#39;za.gif&#39;);
                  INSERT INTO `network` VALUES(42, &#39;121.90.0.0&#39;, &#39;121.90.255.255&#39;, &#39;Vodafone&#39;, &#39;New Zeland&#39;, &#39;nz.gif&#39;);
                  INSERT INTO `network` VALUES(43, &#39;196.30.0.0&#39;, &#39;196.30.255.255&#39;, &#39;Verzion&#39;, &#39;South Africa&#39;, &#39;za.gif&#39;);
                  INSERT INTO `network` VALUES(44, &#39;196.46.240.0&#39;, &#39;196.46.247.255&#39;, &#39;Vee Mobile&#39;, &#39;Nigeria&#39;, &#39;ng.gif&#39;);
                  INSERT INTO `network` VALUES(45, &#39;72.27.0.0&#39;, &#39;72.27.223.255&#39;, &#39;Digicel&#39;, &#39;Jamaica&#39;, &#39;jm.gif&#39;);
                  INSERT INTO `network` VALUES(46, &#39;70.0.0.0&#39;, &#39;70.14.255.255&#39;, &#39;Sprint Wireless&#39;, &#39;United States&#39;, &#39;us.gif&#39;);
                  INSERT INTO `network` VALUES(47, &#39;86.128.0.0&#39;, &#39;86.135.255.255&#39;, &#39;BT Braodband&#39;, &#39;United Kingdom&#39;, &#39;uk.gif&#39;);
                  INSERT INTO `network` VALUES(48, &#39;217.42.0.0&#39;, &#39;217.44.255.255&#39;, &#39;BT Braodband&#39;, &#39;United Kingdom&#39;, &#39;uk.gif&#39;);
                  INSERT INTO `network` VALUES(49, &#39;82.132.192.0&#39;, &#39;82.132.193.255&#39;, &#39;O2 Online&#39;, &#39;United Kingdom&#39;, &#39;uk.gif&#39;);
                  INSERT INTO `network` VALUES(50, &#39;86.107.248.0&#39;, &#39;86.107.255.255&#39;, &#39;Ambra&#39;, &#39;Romania&#39;, &#39;ro.gif&#39;);
                  INSERT INTO `network` VALUES(51, &#39;84.23.96.0&#39;, &#39;84.23.103.255&#39;, &#39;Etihadetisalat&#39;, &#39;South Africa&#39;, &#39;za.gif&#39;);
                  INSERT INTO `network` VALUES(52, &#39;66.94.0.0&#39;, &#39;66.94.31.255&#39;, &#39;T Mobile&#39;, &#39;United States&#39;, &#39;us.gif&#39;);
                  INSERT INTO `network` VALUES(53, &#39;62.217.247.0&#39;, &#39;62.217.247.255&#39;, &#39;Orange&#39;, &#39;Romania&#39;, &#39;ro.gif&#39;);
                  INSERT INTO `network` VALUES(54, &#39;59.160.0.0&#39;, &#39;59.165.255.255&#39;, &#39;Videsh Sanchar Nigam&#39;, &#39;India&#39;, &#39;in.gif&#39;);
                  INSERT INTO `network` VALUES(55, &#39;212.183.128.0&#39;, &#39;212.183.144.255&#39;, &#39;Vodaphone&#39;, &#39;United Kingdom&#39;, &#39;uk.gif&#39;);
                  INSERT INTO `network` VALUES(56, &#39;201.219.18.0&#39;, &#39; 201.219.18.255&#39;, &#39;Telecsa&#39;, &#39;South Africa&#39;, &#39;za.gif&#39;);
                  INSERT INTO `network` VALUES(57, &#39;213.6.0.0&#39;, &#39;213.6.34.255&#39;, &#39;PalTel&#39;, &#39;Palestine&#39;, &#39;jo.gif&#39;);
                  INSERT INTO `network` VALUES(58, &#39;168.209.0.0&#39;, &#39;168.210.255.255&#39;, &#39;NedNet2&#39;, &#39;South Africa&#39;, &#39;za.gif&#39;);
                  INSERT INTO `network` VALUES(59, &#39;203.88.0.0&#39;, &#39;203.88.31.255&#39;, &#39;Max Telecom&#39;, &#39;India&#39;, &#39;in.gif&#39;);
                  INSERT INTO `network` VALUES(60, &#39;124.43.0.0&#39;, &#39;124.43.255.255&#39;, &#39;La Telecom&#39;, &#39;Sri Lanka&#39;, &#39;ce.gif&#39;);
                  INSERT INTO `network` VALUES(61, &#39;203.145.134.192&#39;, &#39;203.145.134.223&#39;, &#39;Idea Celular&#39;, &#39;India&#39;, &#39;in.gif&#39;);
                  INSERT INTO `network` VALUES(62, &#39;219.91.128.0&#39;, &#39;219.91.255.255&#39;, &#39;Iqara Telecom&#39;, &#39;India&#39;, &#39;in.gif&#39;);
                  INSERT INTO `network` VALUES(63, &#39;220.233.0.0&#39;, &#39;220.233.255.255&#39;, &#39;Exetel&#39;, &#39;Australia&#39;, &#39;au.gif&#39;);
                  INSERT INTO `network` VALUES(64, &#39;58.160.0.0&#39;, &#39;58.175.255.255&#39;, &#39;Telstra Bigpond&#39;, &#39;Australia&#39;, &#39;au.gif&#39;);
                  INSERT INTO `network` VALUES(65, &#39;220.101.0.0&#39;, &#39;220.101.191.255&#39;, &#39;Unwired&#39;, &#39;Australia&#39;, &#39;au.gif&#39;);
                  INSERT INTO `network` VALUES(66, &#39;203.193.192.0&#39;, &#39;203.193.223.255&#39;, &#39;Community Telco&#39;, &#39;Australia&#39;, &#39;au.gif&#39;);
                  INSERT INTO `network` VALUES(67, &#39;121.208.0.0&#39;, &#39;121.223.255.255&#39;, &#39;Telstra Bigpond&#39;, &#39;Australia&#39;, &#39;au.gif&#39;);
                  INSERT INTO `network` VALUES(68, &#39;143.238.0.0&#39;, &#39;143.238.255.255&#39;, &#39;Telstra Bigpond&#39;, &#39;Australia&#39;, &#39;au.gif&#39;);
                  INSERT INTO `network` VALUES(69, &#39;203.220.0.0&#39;, &#39;203.220.255.255&#39;, &#39;COMindico&#39;, &#39;Australia&#39;, &#39;au.gif&#39;);
                  INSERT INTO `network` VALUES(70, &#39;124.176.0.0&#39;, &#39;124.191.255.255&#39;, &#39;Telstra Bigpond&#39;, &#39;Australia&#39;, &#39;au.gif&#39;);
                  INSERT INTO `network` VALUES(71, &#39;202.168.0.0&#39;, &#39;202.168.63.255&#39;, &#39;Comindico&#39;, &#39;Australia&#39;, &#39;au.gif&#39;);
                  INSERT INTO `network` VALUES(72, &#39;122.148.0.0&#39;, &#39;122.149.255.255&#39;, &#39;Dodo&#39;, &#39;Australia&#39;, &#39;au.gif&#39;);
                  INSERT INTO `network` VALUES(73, &#39;193.35.128.0&#39;, &#39;193.35.143.255&#39;, &#39;Orange&#39;, &#39;United Kingdom&#39;, &#39;uk.gif&#39;);
                  INSERT INTO `network` VALUES(74, &#39;86.148.0.0&#39;, &#39;86.159.255.255&#39;, &#39;BT-Central Plus&#39;, &#39;United Kingdom&#39;, &#39;uk.gif&#39;);
                  INSERT INTO `network` VALUES(75, &#39;205.239.0.0&#39;, &#39;205.239.255.255&#39;, &#39;EDS&#39;, &#39;United States&#39;, &#39;us.gif&#39;);
                  INSERT INTO `network` VALUES(76, &#39;193.113.200.0&#39;, &#39;193.113.200.255&#39;, &#39;o2&#39;, &#39;United Kingdom&#39;, &#39;uk.gif&#39;);
                  INSERT INTO `network` VALUES(77, &#39;141.1.0.0&#39;, &#39;141.85.255.255&#39;, &#39;PUB-NET&#39;, &#39;Romania&#39;, &#39;ro.gif&#39;);
                  INSERT INTO `network` VALUES(78, &#39;63.208.0.0&#39;, &#39;63.215.255.255&#39;, &#39;Cricket Communications&#39;, &#39;United States&#39;, &#39;us.gif&#39;);
                  INSERT INTO `network` VALUES(79, &#39;203.115.0.0&#39;, &#39;203.115.63.255&#39;, &#39;Telecom&#39;, &#39;Sri Lanka&#39;, &#39;ce.gif&#39;);
                  INSERT INTO `network` VALUES(80, &#39;116.0.0.0&#39;, &#39;116.255.255.255&#39;, &#39;Lanka Communications&#39;, &#39;Sri Lanka&#39;, &#39;ce.gif&#39;);
                  INSERT INTO `network` VALUES(81, &#39;203.194.0.0&#39;, &#39;203.194.63.255&#39;, &#39;COMindico&#39;, &#39;Australia&#39;, &#39;au.gif&#39;);
                  INSERT INTO `network` VALUES(82, &#39;195.189.142.0&#39;, &#39;195.189.143.255&#39;, &#39;Opera Software Norway&#39;, &#39;Proxy&#39;, &#39;-.gif&#39;);
                  INSERT INTO `network` VALUES(83, &#39;64.152.0.0&#39;, &#39;64.159.255.255&#39;, &#39;Level 3 Communications&#39;, &#39;United States&#39;, &#39;us.gif&#39;);
                  INSERT INTO `network` VALUES(84, &#39;41.194.4.0&#39;, &#39;41.194.4.126&#39;, &#39;Online-Malawi&#39;, &#39;South Africa&#39;, &#39;za.gif&#39;);
                  INSERT INTO `network` VALUES(85, &#39;68.24.0.0&#39;, &#39;68.31.255.255&#39;, &#39;Sprint&#39;, &#39;United States&#39;, &#39;us.gif&#39;);
                  INSERT INTO `network` VALUES(86, &#39;211.28.0.0&#39;, &#39;211.31.255.255&#39;, &#39;Optus&#39;, &#39;Australia&#39;, &#39;au.gif&#39;);
                  INSERT INTO `network` VALUES(87, &#39;72.252.0.0&#39;, &#39;72.252.255.255&#39;, &#39;Columbus Communication&#39;, &#39;Jamaica&#39;, &#39;jm.gif&#39;);
                  INSERT INTO `network` VALUES(88, &#39;217.171.128.0&#39;, &#39;217.171.143.255&#39;, &#39;Hutchison 3G&#39;, &#39;United Kingdom&#39;, &#39;uk.gif&#39;);
                  INSERT INTO `network` VALUES(89, &#39;202.45.96.0&#39;, &#39;202.45.127.255&#39;, &#39;Netspace&#39;, &#39;Australia&#39;, &#39;au.gif&#39;);
                  INSERT INTO `network` VALUES(90, &#39;83.225.0.0&#39;, &#39;83.225.255.255&#39;, &#39;Vodafone&#39;, &#39;Italy&#39;, &#39;it.gif&#39;);
                  INSERT INTO `network` VALUES(91, &#39;85.195.119.14&#39;, &#39;85.195.119.15&#39;, &#39;anonymouse.org&#39;, &#39;(proxy)&#39;, &#39;-.gif&#39;);
                  INSERT INTO `network` VALUES(92, &#39;80.192.13.0&#39;, &#39;80.192.13.255&#39;, &#39;Telewest&#39;, &#39;United Kingdom&#39;, &#39;uk.gif&#39;);
                  INSERT INTO `network` VALUES(93, &#39;86.12.224.0&#39;, &#39;86.12.255.255&#39;, &#39;NTL&#39;, &#39;United Kingdom&#39;, &#39;uk.gif&#39;);
                  INSERT INTO `network` VALUES(94, &#39;203.20.32.0&#39;, &#39;203.20.39.255&#39;, &#39;Vodafone&#39;, &#39;Australia&#39;, &#39;au.gif&#39;);
                  INSERT INTO `network` VALUES(95, &#39;60.48.0.0&#39;, &#39;60.54.255.255&#39;, &#39;Telekom&#39;, &#39;Malaysia&#39;, &#39;my.gif&#39;);
                  INSERT INTO `network` VALUES(96, &#39;193.189.90.0&#39;, &#39;193.189.91.255&#39;, &#39;MUSIWAVE(proxy)&#39;, &#39;France&#39;, &#39;fr.gif&#39;);
                  INSERT INTO `network` VALUES(97, &#39;82.0.0.0&#39;, &#39;82.31.255.255&#39;, &#39;NTL&#39;, &#39;United Kingdom&#39;, &#39;uk.gif&#39;);
                  INSERT INTO `network` VALUES(98, &#39;82.37.232.0&#39;, &#39;82.37.239.255&#39;, &#39;Telewest&#39;, &#39;United Kingdom&#39;, &#39;uk.gif&#39;);
                  INSERT INTO `network` VALUES(99, &#39;219.64.0.0&#39;, &#39;219.65.255.255&#39;, &#39;VSNL&#39;, &#39;India&#39;, &#39;in.gif&#39;);
                  INSERT INTO `network` VALUES(100, &#39;125.16.0.0&#39;, &#39;125.23.255.255&#39;, &#39;BHARTI&#39;, &#39;India&#39;, &#39;in.gif&#39;);
                  oh and gumslone this sql is more up to date version of the networks i hav collected

                  Comment


                    #10
                    its in that script as im using the functions from it to get country and network from ip lol[/b]
                    no it isnt where i dont see it and remember the version released here didnt have a sql so i couldnt have had it

                    Comment


                      #11
                      thanx, this is great. been creatin my own code but the help was here lol

                      Comment


                        #12
                        its shows everytime the same country and the weong country

                        Comment


                          #13
                          its shows everytime the same country and the weong country[/b]
                          works fine 4 me and brandon the version of wapside i have is not on this site lol check amylee profile she has a link to a version of wapside wif the functions

                          Comment


                            #14
                            the code i gave u will show ur country to show ur users jus change ip() to a sql to get the ip from the user table

                            Comment


                              #15
                              the code i gave u will show ur country to show ur users jus change ip() to a sql to get the ip from the user table[/b]
                              how do i that i use wapdesire

                              Comment

                              Working...
                              X