Thank you for looking at this thread, I have a simple question which hopefully has a simple solution.
Ok, I want to create an array from an array, but the new array being created only with specific values. Almost like 'where' in mysql.
Example:
[0] => ("value"=>3)
[1] => ("value"=>2)
[2] => ("value"=>6)
[3] => ("value"=>3)
[4] => ("value"=>7)
[5] => ("value"=>8)
[6] => ("value"=>4)
Now I want to create a new array from above array where "value" = 3. I can do this through loops, I was just wondering if there are a better way of creating this without running through loops.
Thank you very much for trying to help out. :rolleyes: