PHP
  Home arrow PHP arrow Page 3 - 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 - Building web pages in different languages
    ( Page 3 of 4 )

    Without a doubt, web sites that show their contents in different languages are very popular these days, right? You should feel glad because you can belong to this club too! Indeed, by using the prior MySQL lookup table, it's possible to generate web pages on a multi-lingual platform.

    To demonstrate how to achieve this, I'm going to reuse the MySQL abstraction class that you learned in the previous section to recreate a fictional scenario in which a web site is capable of displaying a typical "products" page in several languages.

    Essentially, the prototype code that should be used to produce this web page would look as follows:


    // define 'MySQL' class

    class MySQL{

    private $mysqli;

    private $result;

    public function __construct($host='localhost',$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 two_chars_country FROM iptocountry WHERE lower_bound <=$ip AND upper_bound >= $ip LIMIT 1");

    // get row from database table

    $row=$db->fetchRow();

    // fetch contents from 'products' MySQL table based on 2-char country code

    $db->query('SELECT id,name,description FROM products_'.$row['two_chars_country']);

    while($row=$db->fetchRow()){

    // display products list and provide a link to a details page

    echo '<h2>Product :'.$row['name'].'</h2><p>Description :'.$row['description'].'</p>';

    echo '<p><a href="details.php?id='.$row['id'].'">View product details</a></p>';

    }

    }

    catch(Exception $e){

    echo $e->getMessage();

    exit();

    }


    As you can see, the above code sample demonstrates how easy it is to construct an hypothetical "products" web page section whose contents are delivered using multiple languages. In this case, the example assumes that there is one "products" database table for each supported language.

    Based on this assumption, the "iptocountry" MySQL table is naturally employed to map the IP of the user to the respective two-char country code, and once this value has been retrieved, it is used to fetch the products from the appropriate database table.

    Of course, there are many ways to build multi-lingual web page sections dynamically. However, the previous example should give you a clear idea of how to accomplish this through the lookup MySQL table.

    At this stage, I already showed you how to generate a products list by using a simple IP-to-country script. Yet, in that specific situation, only the products were displayed using distinct idioms. So what can you do if you need to build entire multi-lingual web documents?

    One of the easiest ways to achieve this is by using a simple front controller. If you're interested in learning more about this topic, it will be discussed in detail in the last section of this tutorial.

    Click on the link below and read the following section, please.



     
     
    >>> 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 1 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek