|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-08-22 11:51 UTC] pguillot at paanjaru dot com
[2002-08-22 14:48 UTC] sander@php.net
[2002-09-23 14:12 UTC] iliaa@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 21 12:00:02 2025 UTC |
scriptlet to reproduce problem ##beginscriptlet## <?php echo $action; //echo $secondaction; ?> <html> <head> </head> <body> <form method="post" action="arne.php"> <input type="submit" name="action" value="foo"> <!--input type="hidden" name="secondaction" value="bar"--> </form> </body></html> ##endscriptlet## php configure line: ./configure --with-apxs2=/usr/local/apache2/2.0.40/bin/apxs --with-mysql=/usr/local/mysql/current --with-config-file-path=/etc --enable-dbg=shared --with-dbg-profiler --with-ming=shared,/usr/local/src/lamp2/ming-0.2a Apache 2.0.40 configure line: ./configure --prefix=/usr/local/apache2/2.0.40 --enable-mods-shared=all Description of Problem: One of our developers stumbled upon the folloing on our internal test box running php4 and apache2. When running the provided scriptlet, the output, wich one would expect to be "foo" is "fooaction=foo" Further testing revealed that adding a second field (for example a hidden or text field (uncomment the respective lines in scriptlet to verify)) 'fixes' this problem. Problem was found on apache 2.0.39/php-4.2.1 and contuinues to exist after upgrade to 2.0.40 with todays CVS