Für die Nachwelt, sofern jemand eine andere Sprache als PHP nutzt (Python).
You are following a PHP convention of adding brackets to the field names. It's not a web standard, but because PHP supports it out of the box it is popular; Ruby on Rails also uses it.
PHP kodiert den Array im Body mit Brackets:
Code:
mirror_1%5B0%5D%5B0%5D=http
Python behandelt den Array "korrekt" gem. Konvention:
Was quasi eigtl. verlangt wird, ist nicht mirror_1 = Array, sondern:
mirror_1[0][0] = str
mirror_1[0][1] = str
mirror_1[1][0] = str
mirror_1[1][1] = str
usw.
Grüße, Nyc