I am getting an error Php Class not Found (Zend)
My Folder Hierarchy :
/FFMobile(main Folder)
/Controller(Folder)
/Model(Folder)
/Tournament.php
/class1.php
/method1();
/class2.php
/method2();
My goad is to access Class1 and class2 in Tournament.php
ATM I am trying to access them in a following way
$data1 = /class1::method1();
$data2 = /class2::method2();
but I am not able to access the classes I am getting error message "Class not Found".