Analyzing PHP Code


Analyzing PHP CodeThere are a number of ways to analyze php code to get a better feel for how complex it is and clues for what it may take to work on it. For example the following linux shell command will tell you how many lines of php code there is in... [More]

Get a list of whats installed on your linux box


Get a list of whats installed on your linux boxI run Ubuntu on my laptop. Every so often it is better to start over by reinstalling from scratch. I needed an easy way to keep track of what I had installed. This way when I set up the new system I can just go through the list, line by... [More]

Want to see your php errors?


Want to see your php errors?Are you having trouble testing and debugging your code? Would you like to see your php error messages in your browser? Here's how you can turn on php errors; add the following code to the top of your php script.ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL); If you also want to see... [More]
1