Guest User

Untitled

a guest
Jan 19th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. <div class="form-group">
  2. <label for="selector1" class="col-sm-2 control-label">Líder</label>
  3. <div class="col-sm-8">
  4. <select name="lider" id="lider" class="form-control1">
  5. <option value="SEM CÉLULA">SEM CÉLULA</option>
  6. <?php
  7. require_once("../cfg/base.php");
  8. $db=get_db();
  9. $stmt = $db-> prepare( 'SELECT membro, nome FROM membros WHERE membro = "Lider" ORDER BY nome' );
  10. $stmt-> execute();
  11. $result = $stmt-> fetchAll( PDO::FETCH_ASSOC );
  12. ?>
  13. <?php foreach( $result as $row ) { ?>
  14. <option value="<?php echo $row['nome'];?>"><?php echo $row['nome'];?></option>
  15. <?php } ?>
Add Comment
Please, Sign In to add comment