Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. $query = $this->db->get();
  2. $result = $query->result_array();
  3.  
  4.  
  5. $options = '';
  6. $options .= '<option selected disabled>Selecione o Horário</option>';
  7.  
  8. foreach ($result as $key => $value) {
  9. $options .= '<option value="'.$value['id_horas'].'">'. $value['horas'].'</option>';
  10. }
  11. echo $options;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement