I know I should be able to create arrays through GET by creating a url such as
?sort[]=four&sort[price]=five&sort[status]=good
and receive
$_GET['sort'] = ['four','price'=>'five','status'=>'good'];
but instead, when trying to access $_GET['sort']
I get an undefined index for 'sort' and the only keys for $_GET are 'sort[]', 'sort[price]', 'sort[status]'
.
What do I need to change to make this work as expected?