Stores the most valuable pieces of PHP code you can reuse in different projects many times
The following function will return true if the visitor is using IE6
function is_ie6(){ return strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE 6.') !== FALSE; }