well when you do that $splitSearch is now an array, if you do
print_r($splitSearch);
it will show you the resulting array, with keys and values
then you can use that array to loop through with a foreach
foreach($splitSearch as $key => $value)
{
echo $value; //can now use the value in a select statement or whatever
}