On Sun, 11 Nov 2001, GaM3R wrote:

> ; The separator used in PHP generated URLs to separate arguments.
> ; Default is "&".
> ;arg_separator.output = "&"
>   
> ; List of separator(s) used by PHP to parse input URLs into variables.
> ; Default is "&".
> ; NOTE: Every character in this directive is considered as separator!
> ;arg_separator.input = ";&"
> 
> now how can i replicate this on a per vhost level? i dont want to run it globally, i 
>just need it for 1 vhost that im running that is meant to be all xhtml 1.1 compliant 
>but the dammm PHPSESSID is screwing things up

<VirtualHost foo>
   php_value arg_separator.input ";&"
</VirtualHost>

It's documented in the configuration chapter.

-Rasmus


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to