Popular recipes by Olivier Dagenais http://code.activestate.com/recipes/users/98099/2002-09-09T07:50:09-07:00ActiveState Code RecipesiPHP: Semi-interactive PHP debugging using your browser (PHP)
2002-09-09T07:50:09-07:00Olivier Dagenaishttp://code.activestate.com/recipes/users/98099/http://code.activestate.com/recipes/148839-iphp-semi-interactive-php-debugging-using-your-bro/
<p style="color: grey">
PHP
recipe 148839
by <a href="/recipes/users/98099/">Olivier Dagenais</a>
.
</p>
<p>A small snippet that allows you to write/paste PHP code in your browser to have the server evaluate it and print the results. Useful for debugging and testing, it provides a PHP equivalent to Visual Basic's immediate window.</p>
Trace expressions and comments in debug mode. (Python)
2001-03-27T19:29:25-08:00Olivier Dagenaishttp://code.activestate.com/recipes/users/98099/http://code.activestate.com/recipes/52314-trace-expressions-and-comments-in-debug-mode/
<p style="color: grey">
Python
recipe 52314
by <a href="/recipes/users/98099/">Olivier Dagenais</a>
(<a href="/recipes/tags/debugging/">debugging</a>).
</p>
<p>Can't use a stepping debugger to diagnose and fix your programs? Use these functions to log state and execution flow. Sample use provided.</p>