Hi all, i looking for help... and hope of you kindly
I want to change my site language model from radio button to auto dropdown button using loop
This the languages
if ($lang=="en") {
//Pages
define ("Pages", "Pages") ;
}
if ($lang=="de") {
define ("Pages", "Seiten") ;
}
This the existing Radio button
<td width="60%">Languange<b><BR />
<?php
if ($lang == 'en') {
print '<input type="radio" value="de" checked name="lang_" /> German  
<input type="radio" value="en" name="lang_" />English ';
}
else {
print '<input type="radio" value="de" name="lang_" />German  
<input type="radio" value="en" checked name="lang_" />English ';
}
?>
</b></td>
and the Radio button above i want to change drop down button, i looking your help please