View Single Post
Old 12-30-2003, 02:50 AM   #2
Charter
Head Mole
 
Charter's Avatar
 
Join Date: May 2003
Posts: 2,539
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(123),
   
"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
__________________
Responses are offered on a voluntary if/as time is available basis, no guarantees. Double posting or bumping threads will not get your question answered any faster. No support via PM or email, responses not guaranteed. Thank you for your comprehension.
Charter is offline   Reply With Quote