<?php $str='prijs=0,209&orderby=price&order=undefined&posts_per_page=undefined'; parse_str($str, $array); //convert $_GET type string into array // code before this is not needed if using $_GET instead of a string array_walk($array, function(&$n) { $n = explode(',', $n); }); print_r($array);
You have javascript disabled. You will not be able to edit any code.