I would like to change the monitor select list with checkboxes. So I found this
and changed it with that<option value="<?= $monitor['Id'] ?>"<?php if ( array_key_exists( $monitor['Id'], $monitorIds ) ) { ?> selected="selected"<?php } ?>><?= htmlentities($monitor['Name']) ?></option>
And I comment out<input type="checkbox" name="monitorIds[]" value="<?= $monitor['Id'] ?>"<?php if ( array_key_exists( $monitor['Id'], $monitorIds ) ) { ?> checked="checked"<?php } ?>> <?= htmlentities($monitor['Name']) ?><br>
and<select name="monitorIds" size="4" multiple="multiple">
Is there a php guru who can help me please ?</select>