Skip to content

Commit 6a309c9

Browse files
authored
Update README.md
1 parent 0be956f commit 6a309c9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[![Latest Stable Version](https://img.shields.io/packagist/v/ip2location/ip2location-cakephp.svg)](https://packagist.org/packages/ip2location/ip2location-cakephp)
33
[![Total Downloads](https://img.shields.io/packagist/dt/ip2location/ip2location-cakephp.svg?style=flat-square)](https://packagist.org/packages/ip2location/ip2location-cakephp)
44

5-
IP2Location CakePHP plugin enables the user to find the country, region, city, coordinates, zip code, time zone, ISP, domain name, connection type, area code, weather, MCC, MNC, mobile brand name, elevation and usage type that any IP address or hostname originates from. It has been optimized for speed and memory utilization. Developers can use the API to query all IP2Location BIN databases or web service for applications written using CakePHP.
5+
IP2Location CakePHP plugin enables the user to find the country, region, city, coordinates, zip code, time zone, ISP, domain name, connection type, area code, weather, MCC, MNC, mobile brand name, elevation and usage typ, IP address type and IAB advertising category from IP address using IP2Location database. It has been optimized for speed and memory utilization. Developers can use the API to query all IP2Location BIN databases or web service for applications written using CakePHP.
66

77

88
## INSTALLATION
@@ -95,6 +95,8 @@ class TestsController extends AppController
9595
echo 'Mobile Carrier Name: ' . $record['mobileCarrierName'] . '<br>';
9696
echo 'Elevation: ' . $record['elevation'] . '<br>';
9797
echo 'Usage Type: ' . $record['usageType'] . '<br>';
98+
echo 'Address Type: ' . $record['addressType'] . '<br>';
99+
echo 'Category: ' . $record['category'] . '<br>';
98100
99101
$record = $IP2Location->getWebService('8.8.8.8');
100102
echo 'Result from Web service:<br>';

0 commit comments

Comments
 (0)