I find the hardest part
is often finding a good alternative for Database.
Whenever I make my own scripts, I never make them dependent of MySQL.
They should work at any webspace not supporting free or paid MySQL.
So I endup with my custom datastorage php functions.
Or I use scripts that supports SQLite, which is a good alternative.
I have downloaded ADOdb Lite today.
It is a lite and faster version of ADOdb dblayer so supports SQLite and almost whatever DB.
I made some test scripts installing ADOdb Lite and using SQLite.
Went well.
ADOdb Lite is an open source project at Sourceforge.net
Here at website, you can see what functions is supported, and which are not.
http://adodblite.sourceforge.net/functions.php
ADOdb Lite supports a new session handler that offers support for ADOdb's encryption and compression options. ADOdb Lite's session handler is 1/3 the size of ADOdb's and over 350% faster
http://adodblite.sourceforge.net/sessions.php
This was something about what considerations I have to figure out first
when starting creating a new PHP application script
or when looking for a suitable php software to download.
🙂
.