the explode() function returns an array, so in order to print the result to the screen you should use a for loop and print each "cell" in the array separatly.
$exploded_array = explode("[criteria]",$some_string);
for ($i=0;$i<count($exploded_array);$i++)
{
echo $exploded_array[$i];
}