How to get Zipcode, City from clients IP in Codeigniter 3.0
Create Controller Iplocation first: <?php defined('BASEPATH') OR exit('No direct script access allowed'); class Iplocation extends CI_Controller { function __construct() { parent::__construct(); $this->load->library('Geolocation'); $this->load->config('geolocation', true); } public function info(){ $config = $this->config->config['geolocation']; $this->geolocation->initialize($config); $this->geolocation->set_ip_address('49.203.219.172'); // IP to locate // $this->geolocation->set_format('json'); // OR you can change the format within `config/geolocation.php` config file $country = $this->geolocation->get_country(); //var_dump($country); // For more precision $city = $this-...