So i am creating the whole mgigs script again and im at my very conceptual stage but i decided to go open source on this one. Reasons being that contributed code will not only help the codes grow faster but it will help keep a lid on the security from inception.
What now?
Im going to be attaching the script to this thread a bit later but before then i want to know those that may be interested in contributing. If the users interested in this are huge enough i will post the script.
What stage am i now?
I finished the structuring and i have started working through the pages one after another. So far i have just the index and login page coded, the register page is undergoing coding.
The architecture
I used a single front controller method, meaning that all requests pass through the index file. The index file includes a bootstrap file that fetches the correct page nased on the _GET request, and serves the function associated with the said page. All pages are actually functions. Its something like the MVC pattern only that its a really scaled down version that has no models, and the controllers are functions instead.
What you should do?
The first step is tp look at the coding and try to understand how it handles requests and serve pages. Also look at each function and understand how it works. This way everyone can understand whats going on and can contribute.
So for now, i'd like to know those interested. Please note that though everyone can contribute, all codes will be well thought out before being added.
What now?
Im going to be attaching the script to this thread a bit later but before then i want to know those that may be interested in contributing. If the users interested in this are huge enough i will post the script.
What stage am i now?
I finished the structuring and i have started working through the pages one after another. So far i have just the index and login page coded, the register page is undergoing coding.
The architecture
I used a single front controller method, meaning that all requests pass through the index file. The index file includes a bootstrap file that fetches the correct page nased on the _GET request, and serves the function associated with the said page. All pages are actually functions. Its something like the MVC pattern only that its a really scaled down version that has no models, and the controllers are functions instead.
What you should do?
The first step is tp look at the coding and try to understand how it handles requests and serve pages. Also look at each function and understand how it works. This way everyone can understand whats going on and can contribute.
So for now, i'd like to know those interested. Please note that though everyone can contribute, all codes will be well thought out before being added.
Comment