Link to home
Start Free TrialLog in
Avatar of hankknight
hankknightFlag for Canada

asked on

PHP: Send Header to Disable X-XSS-Protection

Using PHP, how can I send a header to disable X-XSS-Protection?
Avatar of Gatherer_Hade
Gatherer_Hade

have you tried

header(“X-XSS-Protection: 0¿);
ASKER CERTIFIED SOLUTION
Avatar of Gatherer_Hade
Gatherer_Hade

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Sometimes it is all about how you ask the question:
http://lmgtfy.com?q=PHP%3A+Send+Header+to+Disable+X-XSS-Protection

See the second answer (from Stackoverflow) for a good discussion and the header command.