• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

[PHP] header switching for languages

Lapras

New Member
I am looking to change the specific lines of uniform parts of the code depending on which language the user wants the page in.
Example index.php?lang=ru
index.php?lang=en
 
Here's some code for you:
PHP:
<?php
switch($_GET['lang']) {
default:
include "english.php";
break;

case "ru":
include "russian.php";
break;
}
?>
 
Back
Top