this shoul work:

while ($count < count($salespersons)) {

        foreach ($salespersons[$count] AS $key => $value) {

                echo htmlentities($key).' - '.$value;

                $count++;
        }

}




On 5/23/06, Jonas Rosling <[EMAIL PROTECTED]> wrote:
I got the code as follows bellow. I'm having some problems to get it to
work. Maybe some of you are able to help me a bit.
First of all I got an array (salespersons) containing names of dynamic array
names. For example it can contain Johan, Mark, Jenny, Bill etc.
By calling for the possision in the array based on $count I'll get the name,
and that's the name of another array. The problem is in the foreach
with ( { } ).

$count = 0;

// Loopa så länge räknaren är mindre än storleken av arrayn $salespersons
while ($count < count($salespersons)) {

        foreach (${$($salespersons[$count])} AS $key => $value) {

                echo htmlentities($key).' - '.$value;

                $count++;
        }

}

Anyone?

Thaks // Jonas

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



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

Reply via email to