This is what is set by default in the php.ini that is on our server:
arg_separator.i nput = ";&"
I want the PHP on the server consider both:
&
&
to be parameter separators. How do I do that? I tried:
arg_separator.i nput=";&;&"
but that did not work.
Comment