Guest User

Untitled

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