I have this array that shows me the subjects of a module. Now, I want that once you have selected the license plates you want, when you press a button, the options of the checkbox that I have chosen will be displayed. How could it be done?
$modulos = $GLOBALS['cf'][$_SESSION['cf']];
foreach ($modulos as $key => $value) {
echo "<input type='checkbox' name='moduloConfirmado' value='' >$key";
echo "<br>";
}