Hi. The include of the debug_functions.php file can be commented out. The debug_functions.php file is for displaying information. For example, the following code would produce the following table:
PHP Code:
$test = array("1A","2B","3C");
$test = phpdigDspTable($test);
echo $test;
Code:
3 rows & 2 columns
index value
0 1A
1 2B
2 3C
and the following code would produce the following table:
PHP Code:
$test = array (
"one" => array("a" => "1A", "b" => "2B", "c" => "3C"),
"two" => array(1, 2, 3),
"three" => array("bird", "cat", "dog")
);
$test = phpdigDspTable($test);
echo $test;
Code:
3 rows & 3 columns
a b c
1A 2B 3C
1 2 3
bird cat dog