I can do an example page and attach it but with no results because Multiple updates records doesn't recognize the loop on select menu like THIS (
<select name="select" id="select">
<?php
while(!$Lang_RS->atEnd()) { //dyn select
?>
<option value="<?php echo($Lang_RS->getColumnVal("lang_id")); ?>"<?php if (!(strcmp($Lang_RS->getColumnVal("lang_id"), ($DefaultLang_RS->getColumnVal("name"))))) {echo "selected=\"selected\"";} ?>><?php echo($Lang_RS->getColumnVal("name")); ?></option>
<?php
$Lang_RS->moveNext();
} //dyn select
$Lang_RS->moveFirst();
?>
</select
)
Because there no respected form on this loop for multiple update records assist.