Can someone explain to me why an explode statement might cause a page not to load?
Here is my the context of my explode statement, which causes the page not to load if I un-comment it:
$tmp_str = $vars['Location'];
var_dump($tmp_str);
// $tmp_arry = explode("," $tmp_str);
The output of the var_dump statement is:
string(20) "Richmond, Washington"
I use explode() in other pages and never ran into this problem with it, so I can't see why this is happening.