Archive for Tips

PHP security tips

Apr 30, 2010 1 Comment by

PHP is the most used programming language on the web today. This fact is actually scary when it comes to PHP security as many hackers have a large collection to pick their victims. So, let me give you a few tips on how to secure PHP web site or application.

Tips Read more

Cache for your database queries

Apr 22, 2010 4 Comments by

You built your site and everything is working fine, but when there is a lot of users on the site, your database becomes a bottleneck. I will show you how to deal with it using simple file cache system for your database results.

Expert, Tips Read more

How to format database dates in PHP

Apr 22, 2010 3 Comments by

You have a great resultset taken from database, it has some datetime fields, and you want to format it differently then MySQL presented it? Here is a small trick.

Tips Read more