Hello,
here stands my troubles:
function display($a,$b)
{
global $source;
/
[...]
/
$last = sizeof($a) - 1;
foreach($a as $key => $value)
{
if($key == $last)
{display($source[$key],'yes');}
else
{display($source[$key],'no');}
}
}
I was expecting the 'display()' function to be called before it has gone out of the foreach statement but it doesn't actually...
does anybody have an idea that would lead me further?
Thanks a lot,
Fred.
fred_espi@hotmail.com