09-01-2017, 04:15 AM
Correct, all the fields I created in the form I also created in join.php at all the required sections.
When I switch from
<select class="form-control" name="streetlist" form="payment-form" required>
<option value="choose">Click To Choose Your Street Name</option>
<option value="Bloukeur">Bloukeur</option>
to
<input type="text" class="form-control" id="street" name="street" placeholder="Street Name e.g. Douglas Carr" value="<?php if (!$form_valid && !empty($_POST)){ echo $street;} ?>" required>
it works. Therefor something in the <select> is causing the form to think a street has not been chosen, even though it clearly has. I just can't figure out what is causing this behavior.
When I switch from
<select class="form-control" name="streetlist" form="payment-form" required>
<option value="choose">Click To Choose Your Street Name</option>
<option value="Bloukeur">Bloukeur</option>
to
<input type="text" class="form-control" id="street" name="street" placeholder="Street Name e.g. Douglas Carr" value="<?php if (!$form_valid && !empty($_POST)){ echo $street;} ?>" required>
it works. Therefor something in the <select> is causing the form to think a street has not been chosen, even though it clearly has. I just can't figure out what is causing this behavior.