If you have access to php.ini, make sure you change arg_separator.input
and arg_separator.output to
arg_separator.input = '&'
arg_separator.output = '&'
You may be able to do this in an .htaccess file
php_value arg_separator.input '&'
php_value arg_separator.output '&'
As a last resort, you may b
El mar, 10-08-2004 a las 02:01, Joshua Street escribió:
> Hi all,
>
> You'll note that & should be & in order to validate...
>
> Has anyone else had this happen to them before? Any suggestions are
> welcome.
Hey Joshua,
try this
ini_set('arg_separator.input','&');
--
Manuel trabaja para
Hi all,
I've come across something of a problem on a website which uses Sessions (and PHP). The server it is hosted on is setup to allow session ID's to be sent as GET variables (i.e. part of the URL string), if the user *apparently* doesn't have cookies enabled.
Now, for whatever reason, th