Hi,
I have a form that posts information. I'm trying to join the $POST values into an array all by itself. For example, if I print_r($POST), I'll get this:
example => Tree
testing => Green
example => Flower
testing=> Red
example => Mountain
testing => Brown
example => Ocean
testing => Blue
I'm trying to figure out how to join these values so that I'll get:
Tree => Green
Flower => Red
Mountain => Brown
Ocean => Blue
I looked at array_merge, but I don't know that this is what I would need to use :/
Help?