File: /home/posscale/subdomains/ecc/jason/includes/php/debug.php
<?
function print_array($arr, $depth=0, $i=0)
{
?>
<div style="font-family:'Courier New'; font-size:12px;" align="left">
<?
foreach ($arr as $key => $data)
{
echo str_repeat(" ",$depth);
if (is_array($data))
{
// If dealing with another array, recurse and process
if(is_numeric($key))
{
echo "[<font color='#FF0000'>".$key."</font>]";
}
else
{
echo "[<font color='#006600'>'".$key."'</font>]";
}
$depth++;
print_array($data, $depth, $i++);
$depth--;
}
else
{
// Make sure to clean up any HTML for display
$cleandata = htmlentities($data);
if(is_numeric($key))
{
echo "[<font color='#FF0000'>".$key."</font>]";
}
else
{
echo "[<font color='#006600'>'".$key."'</font>]";
}
if(is_numeric($cleandata))
{
echo "<font color='#FF00FF'><b>=</b></font><font color='#FF0000'><b>".$cleandata."</b></font><br>";
}
else
{
echo "<font color='#FF00FF'><b>=</b></font><font color='#006600'><b>'".$cleandata."</b>'</font><br>";
}
}
}
?>
</div>
<?
}
?>