Prepared statements with MySQLi
Todays update is all about databases and using MySQLi with prepared statements instead of using MySQL and mysql_connect. There are already a bunch of discussions about prepared statements so I will not go into details here. Basically it helps us protect our site against SQL injections, it runs faster and when preparing a statement the [...]
Another PHP framework
With the new features of PHP 5.3 we are able to get a more stylish look on our PHP code. During the last couple of weeks I have been writing on a very simple PHP framework. I have used the common MVC pattern. Currently there are not a lot of features included. A very simple [...]