• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

PHP Blog with 'Flat' file system

episodic

Lifer
I'm using a ubercheap (free) webhosting that has PHP but no SQL access. I've set up a blogging script that seems great and uses 'flat' files (plain text) instead of a database.

Any comments on that kind of setup?
 
If it does what you want it to do, it doesn't matter.

Theoretically, stats tracking, commenting and searching all become a little harder to code/do. But a well-written program can still do it all.
 
Performance... Flat files data access will be much slower than a real database...

Also, you might wanna look at SQLite... It's a SQL database implemented using a flat file structure, so you access your data using the SQL interface but the database itself is stored using flat files...
 
Back
Top