PHP
  Home arrow PHP arrow Page 2 - Generating Web Pages in Multiple Languages with a PHP IP-to-Country Mapping Application
Dev Shed Forums  
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Smartphone Development  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Mobile Linux  
App Generation ROI  
IBM® developerWorks  
Forums Sitemap  
E-Commerce Hosting  
Linux Web Hosting  
Managed Hosting  
Small Business Hosting  
VPS Hosting  
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid  
Request Media Kit
Contact Us  
Site Map  
Privacy Policy  
Support  
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
Google.com  
PHP

Generating Web Pages in Multiple Languages with a PHP IP-to-Country Mapping Application
By: Alejandro Gervasio
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: starstarstarstarstar / 4
    2009-02-18


    Table of Contents:
  • Generating Web Pages in Multiple Languages with a PHP IP-to-Country Mapping Application
  • Review: building IP-to-country mapping applications
  • Building web pages in different languages
  • Building a simple front controller

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      error-file:tidyout.log Del.ici.ous error-file:tidyout.log Digg
      error-file:tidyout.log Blink error-file:tidyout.log Simpy
      error-file:tidyout.log Google error-file:tidyout.log Spurl
      error-file:tidyout.log Y! MyWeb error-file:tidyout.log Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article

     
     
    ADVERTISEMENT


    Generating Web Pages in Multiple Languages with a PHP IP-to-Country Mapping Application - Review: building IP-to-country mapping applications
    ( Page 2 of 4 )

    Before I proceed to explain how to build dynamic web pages in different languages using the lookup MySQL table created in the previous article of the series, I will quickly review the two practical examples developed in that tutorial. They demonstrated how to utilize the table to map IP addresses of users to their respective countries.

    Having said that, here's how the examples originally looked:


    (procedural approach)


    try{

    // connect to MySQL server

    if(!$db=mysql_connect('host','user','password')){

    throw new Exception ('Error connecting to the server.');

    }

    // select database

    if(!mysql_select_db('alejandro',$db)){

    throw new Exception ('Error selecting database.');

    }

    // get user IP address

    $ip=sprintf('%u',ip2long($_SERVER['REMOTE_ADDR']));

    // Map IP Address to country using 'iptocountry' database

    if(!$result=mysql_query("SELECT country FROM iptocountry WHERE lower_bound <=$ip AND upper_bound >= $ip LIMIT 1")){

    throw new Exception ('Unable to map IP Address to country.');

    }

    // get row from database table

    $row=mysql_fetch_array($result);

    // display country which user is accessing from

    echo 'Welcome dear visitor, you are accessing our web site from : '.$row['country'];

    }

    catch(Exception $e){

    echo $e->getMessage();

    exit();


    }



    (object-oriented approach)


    // define 'MySQL' class

    class MySQL{

    private $mysqli;

    private $result;

    public function __construct($host='host',$user='user',$password='password',$database='database'){

    // connect to MySQL and select database

    $this->mysqli=new mysqli($host,$user,$password,$database);

    if(mysqli_connect_errno()){

    throw new Exception('Error connecting to MySQL: '.$this->mysqli->error);

    }

    }

    // run SQL query

    public function query($query){

    if(!$this->result=$this->mysqli->query($query)){

    throw new Exception('Error running SQL query: '.$this->mysqli->error);

    }

    }

    // fetch one row

    public function fetchRow(){

    while($row=$this->result->fetch_assoc()){

    return $row;

    }

    return false;

    }

    }


    try{

    // connect to MySQL and select database

    $db=new MySQL('host','user','password','database');

    // get user IP address

    $ip=sprintf('%u',ip2long($_SERVER['REMOTE_ADDR']));

    // Map IP Address to country using 'iptocountry' database

    $db->query("SELECT country FROM iptocountry WHERE lower_bound <=$ip AND upper_bound >= $ip LIMIT 1");

    // get row from database table

    $row=$db->fetchRow();

    // display country which user is accessing from

    echo 'Welcome dear visitor, you are accessing our web site from : '.$row['country'];

    }

    catch(Exception $e){

    echo $e->getMessage();

    exit();

    }


    As depicted above, it's really simple to develop an IP-to-country mapping program with PHP, since this procedure only requires querying the "iptocountry" MySQL table based on the IP address collected from the user's machine. In the first case, the mapping process is performed via a procedural script, while the second example utilizes a rudimentary MySQL abstraction class.

    So far, so good. At this point, you've grasped the logic that drives the hands-on examples. It's time to see how this MySQL lookup table can be utilized for generating web pages in different languages.

    This topic will be discussed in depth in the following section. So click on the link that appears below and keep reading. 



     
     
    >>> More PHP Articles          >>> More By Alejandro Gervasio
     

       

    PHP ARTICLES

    - Adding Ordering and Grouping Clauses to the ...
    - Implementing Factory Methods in PHP 5
    - Merging a File Split for FTP Upload using PHP
    - Getting Data from Yahoo Site Explorer Inboun...
    - Method Chaining: Adding More Selecting Metho...
    - How to Split a File During an FTP Upload Usi...
    - Expanding a Custom CodeIgniter Library with ...
    - Using the Yahoo Site Explorer Inbound Links ...
    - Building a CodeIgniter Custom Library with M...
    - Building an E-mini Trading System Using PHP ...
    - Completing the MySQL Class with Method Chain...
    - Building Dynamic Queries with Chainable Meth...
    - PHP Encryption and Decryption Methods
    - Building a MySQL Abstraction Class with Meth...
    - Completing a Sample String Processor with Me...





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 3 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek