How to push both value and key into array (php) - Stack Overflow
Take a look at this code: $GET = array(); $key = 'one=1'; $rule = explode('=',$key); /* array_push($GET,$rule[0]=>$rule[1]); */ I'm looking for something like this so that: print_r ......