I want to pass multiple parameters numbers via url like this:
http://myserver.com/myscript.php?param=55311¶m=352213¶m=6214
(it might be formatted with other way, this is only example)
Now, how to put these parameters (numbers) into array in php code? Like this:
$param = array('55311', '352213', '6214');
$paramArr = explode('_', $_GET['param'])