This is what I want to do.
I have an array.
$arr = array('value1','value2','value3','value4','value5','value6');
Is it possible to pair every two values into something like:
$new_arr = array('value1' => 'value2','value3' => 'value4', 'value5' => 'value6');
In the first array, there are no keys. They are all values. But I want to pair them..in the same order every key => value (the next to it..just like the example above)
Is something like that possible? I badly need it..