I am working on a web app that allows a user to select from a series of drugs that are stored in a table. However, at the moment I can add the same drug multiple times. How do I prevent this from happening? I am not sure how to stop this.
Here is my code.
<h1>                Medication Appropriateness Index</h1>
        <div class="container-fluid">
        <div class="row">
             <div class="col-sm-12">
             <div class="well">
             <form class="form-horizontal" role="form" action="save_drug.php" method="post">
             <div class="form-group">
                  <label class="control-label col-sm-2">Drug:</label>
                  <div class="col-xs-3">
                  <select name="drug" id="Drug" class="form-control" required="">
                          <option value="" selected="" disabled="">Please select A drug...</option>
                          <?php
                          while($r1 = mysql_fetch_array($r_sel))
                          { ?>
                          <option value="<?php echo $r1['d_id']; ?>"><?php echo $r1['drug_name']; ?></option>
                          <?php
                          }
                         ?>
                          
                  </select>
                  </div>
             </div>
 
     
    