I'm trying to make a form, and I have this:
class chartsController extends Zend_Controller_Action
{
public function indexAction()
{
$this->view->charts = "columnone";
}
public function columnoneAction()
{
$form = new forms_ContactForm();
}
}
So when I use $form = new forms_ContactForm(); it should be crating a form
based on what I have in applications/forms/contactForm.php right? But for
some reason I get this error:
Fatal error: Class 'forms_ContactForm' not found in
/home/hsphere/local/home/wwwuser/zend.bizhelper.com/application/controllers/ChartsController.php
on line 13
or u can see it:
http://zend.bizhelper.com/charts/columnone
I'm real new with this =( Thank you for the help!!
--
View this message in context:
http://www.nabble.com/QUestion-about-Classes-tp20740861p20740861.html
Sent from the Zend Framework mailing list archive at Nabble.com.