I know what i want to build, and i have sort of done it, but i still have a few problems, if i explain.
I want the web site to be a modular one. FOr example, i have a list of modules:
mod_customer - This has all the code to deal wih the customers, such as adding a new one, deleting etc...
mod_security - This has all the code to deal with security issues such as logins, access rights etc...
in each module for example would be pages such as add, delete, amend and view all. there would then be a functions file for each module, this would contain all the functions to add, delete, amend and view all.
This would all have configuration data, and each time a new module was added the configuration data would be added to the config file.
These modules would all have to interact with one another, so this would require a little bit of setting up. After that if a module was updated it would just be a case of pulling out the old files and the function file and plugging in a new one. is this at good idea?
I think that this would provide the easyest maintenance. Does anyone have any other ideas suggestions??