H
Hank B
Guest
OK, I have a:
list($var01) = split(',', $string);
and was wondering if instead of doing
list($var01,$var02 ... ) = split(',', $string);
If there was something that would make it automatically add a variable for every " , " it found and name it $var and then the next number like "3" or "11" or stuff like that
list($var01) = split(',', $string);
and was wondering if instead of doing
list($var01,$var02 ... ) = split(',', $string);
If there was something that would make it automatically add a variable for every " , " it found and name it $var and then the next number like "3" or "11" or stuff like that