Johnain Posted November 22, 2007 Share Posted November 22, 2007 can I do this? I want to pass a language value (EN/FR/DE etc.) from an Index HTML page to a PHP page with a language code in the call, so that the PHP page can select texts in that language. I would like to to it from an unordered list item if possible by extending the link ... <li><a href="scripts/pricelist.php??????????????????>Pricelist</a></li> Quote Link to comment Share on other sites More sharing options...
Johnain Posted November 22, 2007 Author Share Posted November 22, 2007 can I do this? I want to pass a language value (EN/FR/DE etc.) from an Index HTML page to a PHP page with a language code in the call, so that the PHP page can select texts in that language. I would like to to it from an unordered list item if possible by extending the link ... <li><a href="scripts/pricelist.php>Pricelist</a></li> Sorry about the dodgy faces. I thought I was just putting question marks in. Quote Link to comment Share on other sites More sharing options...
trq Posted November 22, 2007 Share Posted November 22, 2007 Of course... <li><a href="scripts/pricelist.php?lan=en>English Pricelist</a></li> <li><a href="scripts/pricelist.php?lan=fr>French Pricelist</a></li> pricelist.php <?php if (isset($_GET['lan'])) { switch ($_GET['lan']) { case 'en': // english list break; case 'fr': // french list break; } } ?> Quote Link to comment Share on other sites More sharing options...
Johnain Posted November 22, 2007 Author Share Posted November 22, 2007 Of course... <li><a href="scripts/pricelist.php?lan=en>English Pricelist</a></li> <li><a href="scripts/pricelist.php?lan=fr>French Pricelist</a></li> pricelist.php <?php if (isset($_GET['lan'])) { switch ($_GET['lan']) { case 'en': // english list break; case 'fr': // french list break; } } ?> Thank you very much. It's a steep learning curve for me, but I am enjoying it. Regards John Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.