yes this forum software is a cgi product. Each page is actually a couple of files.
>> How can I do that?
it is essentially a 'flat file database'. all the data is stored in files instead of an actual database. The data is then assembled when it is served.
It uses filesystem functions, creating new files for a new thread and appending to files when someone answers a thread
FLAT - Fixed Length ASCII Text
Does Brett actually use FLAT file, or just plain ASCII text files for BestBBS?
Fixed length (ASCII) text files usually involve either wasted space (if the data does not occupy the total number of bytes allocated for the data), or requires you maintain an index of offset bytes into the data for binary reads...
This is not actaully anything I "need to know"... Just wondering if people still use "FLAT" the way it was originally intended.