I Can't find similar to this is this possible? I have an example array
Array
(
[0] => Array
(
[employee_name] => Abegail P.
[employee_id] => 1297212
[total_offenses] => 10
[type] => giveaways
)
[2] => Array
(
[employee_name] => Carlota
[employee_id] => 1855076
[total_offenses] => 5
[type] => refund
)
)
I want to retrieve array elements that has only have a giveaway types and display like this.
Array
(
[0] => Array
(
[employee_name] => Abegail P.
[employee_id] => 1297212
[total_offenses] => 10
[type] => giveaways
)
)