$xmlURL = "http://domain.com/lang/en.xml"; на $xmlURL = "http://domain.com/lang/ru.xml" и наоборот;
<a href='index.php?lang=EN'>EN</a> | <a href='index.php?lang=RU'>RU</a>
<?php
// index.php
$xmlURL = "http://domain.com/lang/en.xml";
if (!empty($_REQUEST['lang']) AND $_REQUEST['lang'] == "RU")
{
$xmlURL = "http://domain.com/lang/ru.xml";
}
?>