Esempio n. 1
0
                      <option value="MBO">MBO</option>
                      <option value="HBO">HBO</option>
                      <option value="WO">WO</option>
                    </select>
                  </div>
                  <div class="form-group">
                    <label for="">Vul het minimale salaris in</label>
                    <input type="text"class="form-control" name="min-salaris" placeholder="Vul het minimale salaris in">
                    <label for="">Vul het maximale salaris in</label>
                    <input type="text" class="form-control" name="max-salaris" placeholder="Vul het maximale salaris in">
                  </div>
                  <div class="form-group">
                    <label>Kies categorie</label>
                    <select class="form-control" name="brancheID">
                      <?php 
$get_branches = $branche->get_branche();
foreach ($get_branches as $get_branche) {
    echo '<option value="' . $get_branche['brancheID'] . '">' . $get_branche['branchenaam'] . '</option>';
}
?>
                    </select>
                  </div>
                  <div class="form-group">
                    <label>Is de vacature beschikbaar?</label>
                    <input type="radio" name="active" value="1" checked>Ja
                    <input type="radio" name="active" value="0">Nee
                  </div>
                  <div class="form-group">
                    <label for="werknemer" style="display: block;">Toegevoegd door: </label>
                    <select class="form-control" id="werknemer" name="medewerkerID">
                      <?php