I want to turn this string into an array
$string 1,2,3,4,5,6,7,8,9,0
I tried to use explod(",",$string)
but this reurned an array with no values
Thanks if you can help
how did you use explode do you have a code snippet??
Mark.
Mark, I'll assume he needs to do this:
$myArray = explode(","$string);
I would asume so too. But just wanted to make sure.
I figured out my problem, I was passig an array and not a string (stupied me) thanks anyways I appreciate your response