Guest User

Untitled

a guest
Apr 23rd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. ##
  2. $album = new Album_Model;
  3. $category = new Category_Model;
  4. $category_options = $category->find_all();
  5. $cat_options = array();
  6. foreach ($category_options as $option) {
  7. $cat_options[$option->id] = $option->name;
  8. }
  9. ///Form generating stuff
  10. $form->dropdown('category_id')->label(TRUE)->options($cat_options)->selected($album->category_id);
  11. ##
Add Comment
Please, Sign In to add comment