Creating a Site with Codeigniter Without Database Support

codeigniterwebsites

What approach could You suggest, If I don't have mysql or other database support on webhost, but I need to store data ( textual information ) for website somewhere. It's informative site for school – approx 20 to 50 visitors per day, 6 to 7 categories with 3 to 5 subcategories.
Would xml files be normal ?

Best Answer

XML would be perfectly fine, especially with the amount of data I'm supposing you are going to be getting/generating, a csv type list with a parser of some sort (jscript, ajax, php) that could handle it would also be acceptable.

I would also contact your webhost to find out what they have for PHP support, because if they do it should have SQLite built in if nothing else. If your webhost has no dynamic languages allowed (PHP etc) I would just suggest scrapping them and finding another that supports what you need in the first place.

Related Topic