|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-11-24 18:09 UTC] sniper@php.net
[2001-12-15 08:29 UTC] sander@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 10:00:02 2025 UTC |
1. standart php.ini, cookie disable, bug: ---php------------------------ <? session_start(); ?> <a a=\"a\"> <a a=\'a\'> ---output--------------------- <a a="\""a\"> <a a="\'a\'"> ------------------------------ 2. set [url_rewriter.tags=""] in php.ini - no problem 3. Real example in my program (bug in html+js code): ---php------------------------------------------ document.writeln('<frame name=\"kbd\" src=.... ---output--------------------------------------- document.writeln('<frame name="\""kbd\" src=.... ------------------------------------------------