I am following this tutorial on Zend Forms. I copied it verbatim and I got this error
Fatal error: Class 'forms_ContactForm' not found in /Quickstart/application/controllers/IndexController.php on line 10
Which led me to believe it wasn't loading in the class, so I added this into my IndexController.php file
Zend_Loader::loadClass('forms_ContactForm');
This is the main error I am receiving, I believe it is because it cannot locate my form_ContactForm.php file and I am unsure why.
This is my hierarchy of folders:
Quickstart
application
controllers
forms
layouts
views
library
public
link to full error text
Any help would be appreciated,
Levi