Hi I am trying to over come a small issue that I am getting, it seems it will not allow me to split a Cookie
basicly I have a cookie stored that has session|userid
I want to be able to get the session part of that cookie
I have tried everything I now, but seems nothing wants to work.
$this->stringer = $_COOKIE["_now_Session"];
$array=preg_split('@|@',$this->stringer);
There is no need for preg_split here, simply use explode: