Archive for October, 2007

Top 9 most useful web developer tools for Opera

Friday, October 5th, 2007

Originally posted in my old blog at My Opera Firefox has some tools for web developers, such as the excellent Firebug. But what does Opera have? Here is a list of top 9 developer tools for Opera - I bet you can't find these from Firefox.

How to easily redirect PHP output to a file

Wednesday, October 3rd, 2007

Ever wanted to change where your PHP sends the output to a file instead of the browser? I have, and it involved changing every echo and other printing statemenet to fwrite. But there is a better solution to that... Tell me more You probably have heard, or even used, PHP's output buffering functions. ...