php | 将多维数组发送到服务器

I would like to perform GET request. It looks like:

http://c1d.com/get?f[cid]=325&f[field_name[10][0]]=133&f[amount]=320|3600

I'm trying to get my params (print_r($_GET)):

Array
(
    [f] => Array
        (
            [cid] => 325
            [field_name[10] => Array
                (
                    [0] => 133
                )

            [amount] => 320|3600
        )
)

The problem is in field_name array on the server. How can I solve this?