I've recently switched from ASP to PHP.I havn't come across any code which separates values in a string separated by full stops (or "periods" ["."]). For example:
"no.yes.20.maybe.12"
I'd like to separate these into different values:
"no", "yes", "20", "maybe" and "12"
How do I do this???
Thank you for any help or comments!!
/Jon