I am trying to do explode("•", $storedata), and it just ignores the special character and doesn't do anything. I even tried explode("•", $storedata). How do I get php to explode on special chars?
Thanks, Jason
i would give chr a try, of course you need to find the value first.
explode("chr(??)", $storedata)
In this context, the character "•" is not the same as the HTML character entity string "•". So the first thing to do is determine for sure which it is that you need to explode() on.