Hi.
I want to change language on my site online. So, I wrote this:
<form action="<?= preg_replace("/&/", "&", $_SERVER['REQUEST_URI'])
?>" method="post" name="change_la ng_form">
<p style="display: none;"><input type="hidden" name="change_la ng" value="1">
<label for="lang" accesskey="l">= = <?= CHOOSE_LANG ?> ==</label></p>
<p class="margin"> <select id="lang" name="lang" class="langsect ion"
onChange="if (this.options[this.selectedIn dex].value != 'null')
{document.chang e_lang_form.sub mit()}">
<option value="">== <?= CHOOSE_LANG ?> ==</option>
<option value="pl"><?= PL ?></option>
<option value="en"><?= EN ?></option>
</select></p>
</form>
but this not working in text only browsers. I was tested it in Lynx
browser. How can I change it ? Maybe is there any other solution to
change language ?
Any suggestion?
Regards,
Cezar
I want to change language on my site online. So, I wrote this:
<form action="<?= preg_replace("/&/", "&", $_SERVER['REQUEST_URI'])
?>" method="post" name="change_la ng_form">
<p style="display: none;"><input type="hidden" name="change_la ng" value="1">
<label for="lang" accesskey="l">= = <?= CHOOSE_LANG ?> ==</label></p>
<p class="margin"> <select id="lang" name="lang" class="langsect ion"
onChange="if (this.options[this.selectedIn dex].value != 'null')
{document.chang e_lang_form.sub mit()}">
<option value="">== <?= CHOOSE_LANG ?> ==</option>
<option value="pl"><?= PL ?></option>
<option value="en"><?= EN ?></option>
</select></p>
</form>
but this not working in text only browsers. I was tested it in Lynx
browser. How can I change it ? Maybe is there any other solution to
change language ?
Any suggestion?
Regards,
Cezar
Comment