Re: Going With a Flat-File DB for a Simple Comment Form
Posted by squash on 05/11/06 00:48
sure you can use a flatfile. just pick a good delimeter to seperate the
names and comments. Then read in the file using file () and split each
line into an array using preg_split ( '/delimeter'/ ...
then write out the comments. forget mysql for such a simple thing.