-- Helper
---- DomOrder.class.php (class DomOrder)
-- View
---- Domain Registration
------ RegisterDomain.php (HTML + PHP code for user)
-- Controller
---- DomainRegistration.php (class DomainRegistration)
I have a tree structure of folder just like this in my project. Now i am making the object of 'DomainRegistration' class object in RegisterDomain.php, but DomainRegistration.php class is including the 'DomOrder' class from Helper folder.
In DomainRegistration.php i have written
Code: Select all
include('../Helper/DomOrder.class.php')Code: Select all
include('../../Controller/DomainRegistration.php')Please anyone can help me...???