|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-09-30 18:47 UTC] hholzgra@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 08 05:00:02 2025 UTC |
Earlier I've reported a bug on using the char ' as a value in a variable, now tested it on the php version 4.0b3, the problem persist to exist. I've tested with this little program: <FORM ACTION="test.php3" method="get"> <?php if ($bugger) echo "<INPUT type=\"hidden\" name=\"bugger\" value=\"$bugger\">\n"; else echo "<INPUT type=\"hidden\" name=\"bugger\" value=\"'\">\n"; ?> <INPUT type="submit" value=" ged "></FORM> <?php echo "Bugger=$bugger kode=".rawurlencode("$bugger"); ?> Just make a file named test.php3 with code above and run it. It should show the problem i detail.