Hi All,
I have an array like
I want to search multiple values in that array, For eg: if we give name as "test" and address as "test" then the search should check both the condition name and address like "test" and then print the result.
How can create a search like this ? If anyone knows please help me thanks in advance
I have an array like
Code:
Array
(
[0] => Array
(
[first] => Array
(
[name] => test
[email] => test@mail.com
[address] => test
)
)
[1] => Array
(
[second] => Array
(
[name] => test1
[email] => test1@mail.com
[address] => test1
)
)
)
How can create a search like this ? If anyone knows please help me thanks in advance
Comment