Guest Posted October 24, 2006 Posted October 24, 2006 Hi there. i have a website with 4 languages, Swedish or Svenska which is default, English, Norwegian and Finnish. I have devised some code from an tutorial i found and copied it exactly as i saw it. The code which is put in header.php will depending on the language selected, call different image buttons for the main page menu. Currently the Swedish changes and English, but i cant get Norway or Finnish to work. If i switch in code case 4 and case 3 around, then Norway and English will work. I am also sure if i put Finnish where English is now, Finnish will start working and English wont. So there seems to be a problem with Case 2 & 3 for some reason. Does anyone see anything wrong? Here is the website: My Webpage Here is my code for this to work. <? switch ($languages_id) { case 1: $main = "src=images/ENGLISH_01.jpg"; $products = "src=images/ENGLISH_02.jpg"; $account = "src=images/ENGLISH_03.jpg"; $shopcart = "src=images/ENGLISH_04.jpg"; $checkout = "src=images/ENGLISH_05.jpg"; $contacts = "src=images/ENGLISH_06.jpg"; break; case 2: $main = "src=images/FINNISH_01.jpg"; $products = "src=images/FINNISH_02.jpg"; $account = "src=images/FINNISH_03.jpg"; $shopcart = "src=images/FINNISH_04.jpg"; $checkout = "src=images/FINNISH_05.jpg"; $contacts = "src=images/FINNISH_06.jpg"; break; case 3: $main = "src=images/NORWAY_01.jpg"; $products = "src=images/NORWAY_02.jpg"; $account = "src=images/NORWAY_03.jpg"; $shopcart = "src=images/NORWAY_04.jpg"; $checkout = "src=images/NORWAY_05.jpg"; $contacts = "src=images/NORWAY_06.jpg"; break; case 4: $main = "src=images/SVENSKA_01.jpg"; $products = "src=images/SVENSKA_02.jpg"; $account = "src=images/SVENSKA_03.jpg"; $shopcart = "src=images/SVENSKA_04.jpg"; $checkout = "src=images/SVENSKA_05.jpg"; $contacts = "src=images/SVENSKA_06.jpg"; break; } ?> <td><a href=<?=tep_href_link('index.php')?>><img <?= $main;?> alt="" width="100" height="32" border="0" /></a></td> <td><a href=<?=tep_href_link('products_new.php')?>><img <?= $products;?> alt="" width="89" height="32" border="0" /></a></td> <td><a href=<?=tep_href_link('account.php')?>><img <?= $account;?> alt="" width="90" height="32" border="0" /></a></td> <td><a href=<?=tep_href_link('shopping_cart.php')?>><img <?= $shopcart;?> alt="" width="90" height="32" border="0" /></a></td> <td><a href=<?=tep_href_link('checkout_shipping.php')?>><img <?= $checkout;?> alt="" width="91" height="32" border="0" /></a></td> <td><a href=<?=tep_href_link('contact_us.php')?>><img <?= $contacts;?> alt="" width="105" height="32" border="0" /></a></td> Any help is very greatly appreciated. Matt
Recommended Posts
Archived
This topic is now archived and is closed to further replies.