Skip to content

Tips

firebug

Debugging PHP in browser’s Javascript console

Many times I was thinking that it would be nice to debug all my scripts in only one place. And then it occurred to me. Is it possible to use FireBug’s console to debug PHP? Here is a quick tip on how you can make your life easier and do it yourself.

hacker

PHP security tips

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.

speedo

Cache for your database queries

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.