Passed arrays lose all but first element Passed arrays lose all but first element arrays arrays

Passed arrays lose all but first element


Well my System Admin did a system update and reboot and the issue is now fixed. No configuration files were changed.


Tested on my server and it works fine for me:

_GET["latmin"]  Array(    [0] => 52.447529    [1] => 22)

Look in your php.ini in the Data Handling section and see what the values are. Reset everything to default, restart the webserver and try again. PHP.ini Data Handling defaults


An example at the link prints Array ( [0] => 52.447529 ) every time even no variables were passed. So, seems that you have problem in code that is not linked with this code:`

$test="latmin[]=52.447529&latmin[]=22&lonmin=23&lonmax=22.16";parse_str($test);print_r($latmin);phpinfo();

`