PHP and JS debugers examples

Description
There are 3 functions in php ( lib/functions.php ) out(some_value); - shows simple value or any array as table, sa($some_variable); - same as "out" but shows also name of variable, xa(some_value); - same as "out" but returns html code and not send it to browser.
In this engine OB function is used - so everything that you trying to sent to browser using echo, print_r, out and sa functions will be chatched and shown in debug area on page.
There are also out(some_value); funtion in JS ( js/debug.js ) this function shows simple values, arrays and objects in debug area.
You can disable PHP debuger in "index.php" on line 12 and JS debuger in "js/debug.js" on line 3 If you click on debug area it`s will clot...

Example
HTML code
PHP code