CF High wrote:

I split the number list to array -- $num_list_array = split("," $num_list)

Any ideas?

split uses a regular expression. I think you want to use explode here.


$num_list_array = explode(',', $num_list)

- Brad

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to