I have a tag in HTML and several of them I use these tags because I want to simulate a list, where I can add elements, select them and modify them as well as delete (I already do this by JavaScript). at the time of passing them to the database through PHP I use POST to send data and these labels only send the data that is selected (I did not know that) so I am looking for a way to pass all the data of the data regardless of whether they are selected or not, however I could not pass the data to the database, I hope you can help me solve this, or another way to do this even if they are other tags.
Html
<form action="regSala.php" method="POST" class="form-horizontal">
<select multiple class="form-control" id="elementosHTML" name="elementos[]">
<option></option>
<option></option>
<option></option>
<option></option>
</select>
<input class="seleccion" type="submit" value="Guardar">
</form>
PHP
foreach ($_REQUEST["elementos"] as $option_value){
echo $option_value;
}