Jump to content

php replacing my & with & (how do i stop this?)


john_6767

Recommended Posts

Your PHP setup might have the following setting: [b]arg_separator.output[/b] set to & which will helps to keep XHTML compliance for your website. If you dont want PHP to do this the add the following to the top of you php script:
[code=php:0]ini_set("arg_separator.output", "&");[/code]


Or add the following to a .htaccess file
[code]php_value arg_separator.output "&"

[/code]

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.