In PHP you can do something like this:

Code:
$MySQL_Query = "SELECT * FROM `sometable` WHERE `columnname`='" . $somePHPVariable . "';";
But how would you do the same thing for a PHP array (Keeping the code simple)?

Here's an example of what I mean:
Code:
$somePHPArray['0'] = "Bob";
$somePHPArray['1'] = "Jane";
$somePHPArray['2'] = "Henry";
$somePHPArray['3'] = "Amanda";
$somePHPArray['4'] = "Joe";

$MySQL_Query = "SELECT * FROM `sometable` WHERE `columnname`='" . $somePHPArray[?] . "';";
What I mean by simple is not using a fancy loop to create multiple ORs inside the SQL query construction.

Is what I'm asking for possible?