Gentlemen;

I know its late Fri afternoon - but hopefully before everyone splits for 
the weekend someone can help me close this one?

I am trying to process an entire array referencing all the elements both 
keys and values.  I don't know the current values of the keys and that's 
why I have to "walk" through them.

here's what the array looks like:

$agx=array( 'back_door' => '0',
        'front_door' => '1',
        'side_door'  => '0',
        'garage_door' => '1'
);

I have tried various permutations of the while(list($k,$v... and 
foreach($atx as $v => $k)

and all I get are the numeric indexes of the elements as:

0 = 0
1 = 1
2 = 0
3 = 1

What I NEED to extract for EACH iteration are:
$k = 'back_door', $v = 0
$k = 'front_door', $v = 1
$k = 'side_door' , $v = 0
$k = 'garage_door', $v = 1

In the interest of time, can SOMEONE PLEASE provide some guidance as to 
the best way (code-wise) to accomplish this?

Thanks a million on a nice Friday afternoon.

bobmct
_______________________________________________
New York PHP Community Talk Mailing List
http://lists.nyphp.org/mailman/listinfo/talk

NYPHPCon 2006 Presentations Online
http://www.nyphpcon.com

Show Your Participation in New York PHP
http://www.nyphp.org/show_participation.php

Reply via email to