hi there,
i have this:
foreach($data2 as $k=>$v){
$segs = split("_", $k);
$cn=$segs[sizeof($segs) - 2];
echo $cn;
$cn printouts out to be like this:
#document
CustomerContext
XpciVersion
ResponseStatusCode
what i want is to get rid of #document completely from this string or may be get rid of this character "#" because of which i cannot insert in to DB and it gives error.
any idea?