Andrey V. Stefanenko wrote:
I am not able to confignure auto generated PHP output
<dt><a href="./profile/?pid=1025&PHPSESSID=6a2db2de31fb7e15728cc68dd01899c4">
and not able to avoid ampersands in URL
Should I and how i can setup my PHP?
In your .htaccess file: php_value arg_separator.output &
or in Php:
ini_set('arg_separator.output','&');But i can avoid links - change them with forms and buttons. Is this the BEST solution for this trouble?
I don't think so. Php will mess up your forms even worse.
You could also avoid using session id's in links, using only cookies.
php_value session.use_trans_sid 0 php_value session.use_only_cookies 1
/AndersN
*****************************************************
The discussion list for http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
*****************************************************
