large scale... in my H context
- users who use it > 2000 persons per day.
- involve many DB query which i got to paged them into page or file.
- a separation of code and presentation layers.
- security issues.
but i found it hard to do total separation of code and presentation layers.
i want my scripts to be manageble which in my context is
less file. maybe 4 => 5 files (core files) to rock application.
i found it hard to manage when files grow to 15+
i think in developing large scale web application... issues i / we face :
1. building the form (many forms) again and again for the user to interact with users. <= which in my opinion, these should autobuild based on our SQL create table when installing.
thinking TOO much of the security problem, where i am not so sure whether i can hack my apps or not but 60% in my mind tells me i can hack it if i start to think how to hack it.
don't want to do things again and again, wish there could be same sort of AI that deal with the again and again task. But the moment start using the AI, customization power will be low or the AI is dumb?
have some bias toward template method to deal code and presentation issue. but can't think any good idea to deal it.
after all, web application is a database interface.
IMHO, web application should stand on its own when
- i already suppy it process code.
which i mean, the framework should do all the dirty jobs.
some peeps use one file to display all things.
some peeps use many files to display all things.
some use combination
or any other new method?