Hi,
I'm getting an url variable from this test.php?ids=1,2,3
and need to transform it to
Array
(
[0] => 1
[1] => 8
[2] => 9
)
What I've tried is : $ids = explode(', ', $_GET["ids"]);
but that gives me an array like this:
Array
(
[0] => 1,8,9
)
Thankful for your help!