PHPSESSID
hello,
php 4.4.6
i get in my forms a hidden field "PHPSESSID", that comes out of the
blue, is it because the php.ini variable "session.use_trans_sid" is set
to "on" ? (i cannot change the server settings)
Regards,
Lionel.
Re: PHPSESSID
Also sprach lvalero:
> i get in my forms a hidden field "PHPSESSID", that comes out of the
> blue, is it because the php.ini variable "session.use_trans_sid" is
> set to "on" ? (i cannot change the server settings)
Probably, yes. If you cannot change the server settings, you could try
ini_set( 'url_rewriter.tags', '' ).
Greetings,
Thomas
Re: PHPSESSID
That's it !
Regards.
Thomas Mlynarczyk wrote:
> Also sprach lvalero:
>
>> i get in my forms a hidden field "PHPSESSID", that comes out of the
>> blue, is it because the php.ini variable "session.use_trans_sid" is
>> set to "on" ? (i cannot change the server settings)
>
> Probably, yes. If you cannot change the server settings, you could try
> ini_set( 'url_rewriter.tags', '' ).
>
> Greetings,
> Thomas
>
>
Re: PHPSESSID
>> If you cannot change the server settings, you could
>> try ini_set( 'url_rewriter.tags', '' ).
Then, of course, you must take care yourself of passing on the session ID in
case cookies are disabled. So if you use sessions, you should leave the
setting as it is. On the other hand, if you do not start any session, PHP
should not mess with your form.
Greetings,
Thomas