[EMAIL PROTECTED] wrote:
Hi,
How can I get multiple values from a variable (from URL) and parse them into an 
array?

For example:
example.php?graphArray=20,35,84,21,23,22,24,95

parse_str is for multiple variables, not multiple values of one variable.

$x_array = explode(',', $_GET['graphArray']);

--
Postgresql & php tutorials
http://www.designmagick.com/

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

Reply via email to