3
I have a PHP array with Ids:
$idNaoEnvia['1', '3', '6']
And a table called account in MYSQL:
ID | NOME
1 | caio
2 | antonio
3 | cleber
4 | marcos
5 | leonardo
6 | andre
Wanted using PDO to give a select in the table account only in the names that NAY are in that array. The answer I hope would be:
antonio, marcos, Leonardo
It is possible?