Voting

: min(three, two)?
(Example: nine)

The Note You're Voting On

Anonymous
14 years ago
As noted before, with php5.3 the separator is & on some servers it seems. Normally if posting to another php5.3 machine this will not be a problem.

But if you post to a tomcat java server or something else the & might not be handled properly.

To overcome this specify:

http_build_query($array, '', '&');

and NOT

http_build_query($array); //gives & to some servers

<< Back to user notes page

To Top