Wednesday, January 6, 2010

PHP: light class to work with SQLite

Today I share with you, simple and lightweight class to connect to SQLite database. This is very usefull if you don't want import large adodb library or similar. If you need just make few database queries, this solution are for you.

Friday, January 1, 2010

PHP: convert php array to javascript array

sometimes need convert php array to javascript array. If your hosting service meet these requirements (PHP 5 >= 5.2.0, PECL json >= 1.2.0). You can do this with json_encode function



If you don't have json_encode function, you can use this function.
 
Software