[SOLVED] Explode ... not exploding
Posted: Mon Oct 04, 2004 4:59 pm
Really weird. I've used this function a million times and for some reason (I think I'm just numb to this project by now) it's not doing what I ask, or rather think I'm asking.
By this, it should come back with
Or something to that effect, right?
Code: Select all
//the URL looks like ...&searchterm=a+b+c
$terms = explode("+", $_GET['searchterm']);
print_r($terms);Code: Select all
Array (ї0] => a, ї1] => b, ї2] => c)