public function addAction()
 {
     $form = new Backend_Form_Albums();
     $this->view->form = $form;
     $request = $this->getRequest();
     if ($request->isPost()) {
         if ($form->isValid($request->getPost())) {
             $title = $form->getValue('title');
             $artist = $form->getValue('artist');
             $genre = $form->getValue('genre');
             $mysql = new Application_Model_DbTable_Albums();
             $mysql->save($title, $artist, $genre);
             $this->_redirect('/admin/albums');
         } else {
             $form->populate($request->getPost());
         }
     }
 }