i have a string that looks like this
$string="1 15 4";
i dont know the length of any of the numbers, it could be anything but theres always 3.
how can i seperate these into an array or variables?
whoops never mind!
$pieces = explode(" ",$string);
ahh easy as that!