i develop the program that get the array of user skills contain user_id and their skills, this array like this :
array(4) {
[17]=>
array(3) {
[0]=>
string(8) "word"
[1]=>
string(10) "power point"
[2]=>
string(28) "excel"
}
[16]=>
array(3) {
[0]=>
string(14) "english
[1]=>
string(14) "french"
[2]=>
string(12) "farsi"
}
}
the key is user_id and the value is array of skills, now i want to search the user_ids that have two value : english Or word and i expect to return 17, 16 , how can i do that? , thanks for you help :)