Trabajando sobre unir las reglas de varios grupos

This commit is contained in:
Jaime Jimenez
2023-04-24 20:35:28 +02:00
parent 2ccb6c31ac
commit 39d287fa14
3 changed files with 70 additions and 23 deletions

View File

@ -91,10 +91,14 @@
<?php
if ($id_select['token_group'] == $item['token']){
$selItem = 'selected';
break;
}
else{
$selItem = '';
}
?>
<?php endforeach; ?>
<option value="<?=$item['token']??''?>" <?= (isset($selItem))?'selected':'' ?>> <?=$item['title']??''?></option>
<option value="<?=$item['token']??''?>" <?= $selItem ?>> <?=$item['title']??''?></option>
<?php endforeach; ?>
</select>
</div>