PHP and javascript snippets you can copy and paste.

Showing posts with label javascript ajx_print_r. Show all posts
Showing posts with label javascript ajx_print_r. Show all posts

Wednesday, March 28, 2007

ajx_print_r

/**
* Credit: http://lists.firepipe.net/pipermail/cwe-lug/2004-September/001934.html
function ajx_print_r(obj, cont, tab){

var propertyList = '';
var val = '';
for (prop in obj){
eval("val = 'obj.' + prop")
propertyList += tab + prop + '=>' + eval(val);
propertyList += "\n";
}

return propertyList;

}