I have an Multidimensional array that takes a similar form to this array bellow.
$shop = array( array( Title => "rose", Price => 1.25, Number => 15 ), array( Title => "daisy", Price => 0.75, Number => 25, ), array( Title => "orchid", Price => 1.15, Number => 7 ) );
I would like to see if a value I'm looking for is in the array, and if so, return the position of the element in the array.