Forum Moderators: open
Hi, I came from PHP world.
I need parse an associative array (not numeric) in ASP. In PHP is:
foreach ($array as $var => $val)
{
// $var is the index (is not numeric)
// ex: $var = 'name'; $val = 'John Doe'
}I know that is something like this:
For i=0 to UBound(array)
response.write array(i)
NextBut this is not for associative array, right?
Please can you guide me!
Thanks.-
[edited by: NomikOS at 6:38 am (utc) on Feb. 28, 2009]