Hello
I create my custom template but I got a problem with php and languages. I'd like to have a different menu in english, spanish and portuguese...when someone click on english flag he can see the header menu in english... when someone click on spanish flah, menu in spanish language and portuguese flah portuguese menu.
I found something like that:
<?php
$language = $_SESSION['language'];
if ( $language == 'english' ) {
?>
Menu here
<?php
} else {
?>
English menu here
<?php
}
?>
I created the menu with css and it works great with 2 languages ( English and spanish ), but i need something to work fine with 3 languages ( English is default, spanish and then Portuguese ).
I hope someone can help me here :)
thanks
sandra



