im not saying this will work, but on the PHP website
it has a print_r ( array );
which prints ever element of an array.
"<pre>
<?php
    $a = array ('a' => 'apple', 'b' => 'banana', 'c' => array
('x','y','z'));
    print_r ($a);
?>
</pre>
which will output :
<pre>
Array
(
    [a] => apple
    [b] => banana
    [c] => Array
        (
            [0] => x
            [1] => y
            [2] => z
        )
)
</pre>
Remember that print_r() will move the array pointer to the end. Use reset()
to bring it back to beginning."
(this was copy/pasted from the php.net website)



-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to