PHP Programming Exercises
- Write a php program to compare between things that are not integers
- Write a division table program in PHP using for loop
- Write a program in PHP to print prime numbers between 1 and 100
- Write a php program to print numbers from 10 to 1 using the recursion function
- Write a php program to store the username in cookie and check whether the user have successfully login or not
- Write a php program to convert the given string into an array
- Write a php program to loop over the json data
- Write a program in PHP to remove all html tags except paragraph and italics tags
- Write a program to loop through an associative array using foreach() or with each()
- Write a php program to differentiate between fgets, fgetss and fgetcsv
- There are two deals of an item to buy. The quantities and prices of the item are given below. Write a program in PHP to find the best deal to purchase the item
- Write a php program to set session on successful login
- Write a program in PHP to read from directory
- PHP create image from text and save
- How to get data from XML file in PHP
- PHP Create Word Document from HTML
- How to check whether a year is a leap year or not in PHP
- Fibonacci Series Program in PHP
- How to generate QR Code in PHP
- How does PHP store data in cache?
- How to detect a mobile device using PHP?
- How to send HTML form data to email using PHP?
- How to get location from IP address using PHP?
- How to lock a file using PHP?
- How to import a CSV file into MySQL using PHP
- How to fetch data from database in PHP and display in PDF
- How to insert image in database using PHP
- How to remove last character from string using PHP?
- Write a PHP program to reverse a string without predefined function
- Write a PHP program to calculate percentage of total
- How to sanitize input for MySQL using PHP?
- Write a program to calculate electricity bill in PHP
- How to send email with SMTP in PHP?
- How to Send Text Messages With PHP?
- How to convert stdClass object to Array in PHP?
- How do I import Excel data into MySQL database using PHP?
- How can I post a form without refreshing the page?
- How to sort table columns with PHP and MySQL?
- How to get current directory, filename and code line number in PHP
There may be different purposes for getting the IP address of the visitor. We can easily track the visitor activity on the website and get information about the full geographical locations of the visitors. We can show or hide visitors from a specific country or region for security reasons. We can also store the visitor's information in the database to create our own analytics report.
PHP provides the simplest way to get the visitor's IP address. The $_SERVER superglobal variable is used to get all of the IP relevant information. The REMOTE_ADDR constant is used to pass as a parameter to $_SERVER for getting the IP address of the current user.
$ip = $_SERVER['REMOTE_ADDR'];
Next, we will use the third API to get the full information about the IP address. In this article, we are using the 'geoplugin' API. The information received by the third party is not more readable. So, first convert them into a string using PHP file_get_contents() function and then decode them using the json_decode() function.
$ip_info = @json_decode(file_get_contents("http://www.geoplugin.net/json.gp?ip=".$ip));
Complete Code: Get Visitor Information by IP Address in PHP
Here is a very simple code in PHP to get the IP address of the visitor and get full location information about the visitor-
Output of the above code -
Country Code = PS
City =
Region =
Latitude = 32
Longitude = 35.25
Timezone = Asia/Hebron
Continent Code = AS
Continent Name = Asia
Timezone = Asia/Hebron
Currency Code =