PHP Classes

File: ip.php

Recommend this page to a friend!
  Classes of kz   IP 2 Country IP2C   ip.php   Download  
File: ip.php
Role: Example script
Content type: text/plain
Description: sample file
Class: IP 2 Country IP2C
Get country of a given IP address from CSV files
Author: By
Last change:
Date: 13 years ago
Size: 418 bytes
 

Contents

Class file image Download
<?
/*

IP 2 Country class
2011.01
Kacper Zbonikowski - POLAND
mobile +48 501079176 email: zbonikowski@o2.pl
Free to non-comercial use


if you use ip_database.csv please add http://webnet77.com/ link on your site


*/
   
include "ipclass.php";
   
$ip=new get_user_info;
   
$ip->user_info();
   
$ip->show_all_info();
   
   
$ip->set_ip("13.423.52");
   
$ip->dist_ip();
   
$ip->count_ip();
   
$ip->search_country();
           
   
$ip->_debug();
?>