
carlo - 2011-01-28 11:06:48 -
In reply to message 1 from carlo
I solved the problem simply inserting a '2' as 3td argument of splitting function 'explode'.
before: $attrSubSet = explode('=', trim($attrSet[$i]));
after: $attrSubSet = explode('=', trim($attrSet[$i]),2);
Bye Bye
Carlo