IE6 denial message for Momentile.com, originally uploaded by John Martz.
It’s condescending AND informative.
IE6 denial message for Momentile.com, originally uploaded by John Martz.
It’s condescending AND informative.
Here's a little, mostly useless tip. If you need to toggle between two blocks of code (for example, comment out a block of text and replace with debugging values, and then switch back again), instead of doing it like a noob...
// $myArray = $database->getObject();
// $myOtherArray = doSomethingElse();
$myArray = array("foo");
$myOtherArray = array("fu", "bar");
.. use this technique [...]