Hello,
I have been trying to insert multiple checkbox into the database but it is not working property. I only receive one value in the database.
<legend class="col-sm-2 col-form-label">Adv type</legend>
<div class="col-sm-10">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="AdvType" id="inp_AdvType" name="AdvType">
<label class="form-check-label" for="inp_AdvType">Adv type</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="AdvType2" id="inp_AdvType1" name="AdvType">
<label class="form-check-label" for="inp_AdvType">Adv type 2</label>
</div>
</div>
</div>
