Hello,
I have a string of data and I need to separate it into individual values.
For example:
I need to separate them so each is an individual value in an array.PHP Code:$result = "Randy; Mike; John; Cathy";
Can i do this with list()?PHP Code:$result[0] = "Randy";
$result[1] = "Mike";
$result[2] = "John";
$result[3] = "Cathy";
Thanks






Bookmarks