I'm new to php and have a basic question regarding parsing strings.
I have a variable "SKU" whose value is "9897_BLK"
I need to split this into two separate values:
"STYLE" with a value of "9897" AND
"COLOR" with a value of "BLK"
I suppose there's a way to use the underscore to delimit the string. Thanks for your help.