Advertisement
hexasoft

Display Advertisement by Country Used PHP and MySQL for IPV4

May 16th, 2018
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.59 KB | None | 0 0
  1. /****************************************************************************************************************/
  2. /* Description: This snippet is provide simple way to help user display Advertisement by Country                */
  3. /*              suggestions for different city locations across the country.                                    */
  4. /*              There are 1 steps in this snippet. For information, please visit IP2Location tutorial page at:  */
  5. /* https://www.ip2location.com/tutorials/display-advertisement-by-country-using-php-and-mysql-database          */
  6. /****************************************************************************************************************/
  7. /* You can obtain free IP Country database for IPv4 at https://lite.ip2location.com/database/ip-country         */
  8.  
  9. <?php
  10.     // Replace this MYSQL server variables with actual configuration
  11.     $mysql_server = "mysql_server.com";
  12.     $mysql_user_name = "UserName";
  13.     $mysql_user_pass = "Password";
  14.  
  15.     // Retrieve visitor IP address from server variable REMOTE_ADDR
  16.     $ipaddress = $_SERVER['REMOTE_ADDR'];
  17.  
  18.     // Convert IP address to IP number for querying database
  19.     $ipno = Dot2LongIP($ipaddress);
  20.  
  21.     // Connect to the database server
  22.     $link = mysqli_connect($mysql_server, $mysql_user_name, $mysql_user_pass) or die("Could not connect to MySQL database");
  23.  
  24.     // Connect to the IP2Location database
  25.     mysqli_select_db($link,"ip2location") or die("Could not select database");
  26.  
  27.     // SQL query string to match the recordset that the IP number fall between the valid range
  28.     $query = "SELECT * FROM ip_country WHERE $ipno <= ip_to LIMIT 1";
  29.  
  30.     // Execute SQL query
  31.     $result = mysqli_query($link,$query) or die("IP2Location Query Failed");
  32.  
  33.     // Retrieve the recordset (only one)
  34.     $row = mysqli_fetch_assoc($result);
  35.  
  36.     // Keep the country information into two different variables
  37.     $country_code = $row['country_code'];
  38.     $country_name = $row['country_name'];
  39.  
  40.     // Free recordset and close database connection
  41.     mysqli_free_result($result);
  42.     mysqli_close($link);
  43.      
  44.      
  45.     // Display ads according to visitor's country,replace this to your own code
  46.     echo 'This is the advertisement for' . $country_name .'<br/><br/>';
  47.     exit;
  48.  
  49.  
  50.     // Function to convert IP address (xxx.xxx.xxx.xxx) to IP number (0 to 256^4-1)
  51.     function Dot2LongIP ($IPaddr) {
  52.      if ($IPaddr == "")
  53.      {
  54.        return 0;
  55.      } else {
  56.        $ips = explode(".", $IPaddr);
  57.        return ($ips[3] + $ips[2] * 256 + $ips[1] * 256 * 256 + $ips[0] * 256 * 256 * 256);
  58.      }
  59.     }
  60. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement