Create Drop-Down In The Form

i want to create drop-down in the create Brand form in place of "category code" that take the data from the database table but i have found fatal error:

( ! ) Fatal error: Call to a member function getCategoryOptions() on a non-object in C:\xampp\htdocs\notjustprice\protected\views\brand\_form.php on line 19

please help me how to solve it

thanks in advance

i used this code which is in the following files…

It’s telling you that $this->getCategory() in your view is not returning an object. You haven’t assigned a valid object to your private $_category variable in the current action.