Hi there People of WebmasterWorld,
This code runs ok, simple enough, but not in the places I would expect:-
$user = str_replace(".", "#", "#date.country");
$user_detail = explode("#", $user);
if I: print_r($user_detail);
I get this:-
Array ( [0] => [1] => date [2] => country )
My question is, shouldn't date be in ['0'] and country be in ['1'], or have I missed something really obvious?
Cheers,
MRb