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?
You need to set arg_separator.output to & instead of &
That can be modified in couple of places:
Globally in php.ini
arg_separator.output = "&"
or locally in .htaccess
php_value arg_separator.output "&"
or locally in PHP script:
ini_set('arg_separator.output', '&');
--
Toni Viemer� | http://selfdestruct.net
"The ones who dont do anything are always the ones who try to pull you
down."
*****************************************************
The discussion list for http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
*****************************************************