Name: Anonymous 2012-05-09 15:11
I have a project with a web frontend where users are able to create new webpages. I want to know what's the best (as in least resource intensive and most lightweight) strategy in this case.
I can think of two possibilities:
1. My main server script would create subdirectories containing actual html pages which themselves contain scripts to generate the dynamic content.
2. My main server script would use the GET request to generate the entire webpages on the fly without actually having any html pages stored anywhere.
What approach would be best? Any other insights on matters of implementations (as in actual technologies to use).
I can think of two possibilities:
1. My main server script would create subdirectories containing actual html pages which themselves contain scripts to generate the dynamic content.
2. My main server script would use the GET request to generate the entire webpages on the fly without actually having any html pages stored anywhere.
What approach would be best? Any other insights on matters of implementations (as in actual technologies to use).