Codice PHP:
$i 0;
while(
$row mysql_fetch_array($result)){
        
$checked $i==0?' checked':'';
        echo
"<input type=\"radio\" name=\"lingua\" value=\"{$row['dato']}\"{$checked} />"$row['dato'];
        
$i++; 
ciao