On Tue, 15 Jun 2004 09:50:55 -0400, Jeff Schmidt
<[EMAIL PROTECTED]>
> I have some tags that look like:
>
> <a href='script.php?var=value'>
>
> And session management is rewriting these as:
>
> <a href='script.php?var=value&PHPSESSID=xxxxxxxxxxxx'>
>
> Which at first glance appears fine, right? But the problem is, according
> to the validator, instead of having a literal ampersand char, it should
> be &ampr;. So, is there any way to tell the url rewriter to delimit the
> name=value pairs using &ampr instead of a literal ampersand?

yeah, set arg_separator.output to "&amp;" in your php.ini file.

 -robin

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to