Create multilanguage site

To create a site in multiple languages you should do two main things :

Write this code after connection created in database file :

mysql_query (
‘SET character_set_connection=utf8,
character_set_results=utf8,
character_set_client=binary;’,
$connectionID
);

And write below code in common file which use in complete site :

header(‘Content-Type: text/html; charset=ISO-8859-1’);


Comments

2 responses to “Create multilanguage site”

Leave a Reply

Your email address will not be published. Required fields are marked *

*