Jeppe Vesterbæk wrote:
>>Prøv
>>
>>&
>>I stedet for
>>&
>
>
> Ja det har jeg også læst et sted, men nu er det jo noget php automatisk
> smider på....
Jeg fandt følgende kommentar på PHP.net
----
stoiev@ig.com
20-Mar-2002 09:10
Carefull when you are working in PHP with WML. The arg separator used to
put de PHPSESSID variable in URL is '&' by default, and this cause a
Compile Error in browsers:
<anchor><go href="index.php?estate=1&PHPSESSID=12345678abcde"></go>
instead of this:
<anchor><go href="index.php?estate=1&PHPSESSID=12345678abcde"></go>
It´s safety include the line:
ini_set ( "arg_separator", "&");
to change the arg separator, it worked in PHP 4.1.2
Another thing that the onpick tag is not defined in the
url_rewriter.tags list by default(if there are others, i don´t now).
This is must be added in php.ini file.
* In most case the WAP GateWay accepts cookies an the auto-transpass-SID
is not necessary, it´s hard to find problems with this.
-----
http://www.php.net/manual/en/ref.session.php#session.configuration
mvh
Johan