per ora ho fatto così ma mi crea tanti select quanti sono i dati che richiama, come faccio a far mettere tutti i dati in un solo select?
function tldListH(){

$i = 0;

foreach ($this->serverList as $value) {

if ($value['check'] == true) $checked=" checked='checked' ";

else $checked = " ";



echo '<td><select name="tld_'.$value['tld'].'"'.$checked.'><option value='.$value['tld'].'>'.$value['tld'].'</option></select></td>';

$i++;

if ($i > 4) {

$i = 1;

echo '</tr><tr>';

}

}



}