Debugging PHP

Some useful techniques in debugging PHP are mentioned below Article: http://dev.piwik.org/trac/wiki/HowToSetupDevelopmentEnvironmentWindows Firefox addon – Firephp PHP Extension – Xdebug Using var_dump() phpEd Zend Studio (5.5) with Zend Platform Using, print_r and echo
Use Firebug in Any Browser

Firebug is on of the famous extension for inspecting web pages in firefox. Now it is possible to use firebug in any browser using Firebug lite. Firebug lite is the small version of Firebug with limited features and usage, but has the full capability. In order to do this, just save a ...
Adding watermarks to images with PHP
Get more results from a specific site using “AT” operator

The site: operator for Google search is pretty useful in getting search results from a targeted site. But it is pretty painful to type the operator site:example.com search term. Recently Google introduced the the "AT" operator which is very useful to get more results from a spefic site. This ...
Accessing newly created elements using .live() function in jQuery

The .click() and similar functions like .hover() allows to access the elements which are already present. But elements created using .append(), .after(), .before() etc are newly inserted into the page. These newly created elements cannot be accessed using the functions .click(), .hover() as they target only the already present ...