From: srinivas dot shanmugam at logica dot com Operating system: Debian PHP version: 5.2CVS-2008-10-09 (snap) PHP Bug Type: Scripting Engine problem Bug description: $_REQUEST array is not populating
Description: ------------ $_POST and $_GET arrays are not populating when i submit the form.Please take a look at the php info http://80.248.161.105/mapstream/info.php. Version : PHP Version 5.2.0-8+etch13 Reproduce code: --------------- Form values are not populating : Sample piece of Code from the file which handles all form request handler and log it in text file: $v = var_export($_REQUEST, true); $this->logger->write("Request array are $v", INFO, "Controler Log"); 1. Submit the Username and Password and click on Login Button Currently Request array populated Inside the Log File : INFO: Request array are array ( 'PHPSESSID' => '8185386bb48b0e3c1aefd6ff4da79062', ) Expected result: ---------------- $_POST and $_GET array should populate when the form is submitted. Step : 1. Submit the Username and Password and click on Login Button Expected Request array populated Inside the Log File ------------------------------------------------------ 10-07-08 6:13:06 127.0.0.1 INFO: Controler Log INFO: Inside Controler Constructor - Requests are array ( 'user' => 'test', 'pass' => 'test123', 'sublogin' => '1', 'PHPSESSID' => 'a439203427812c7d3a67ecfbf26d1b7b', ) Actual result: -------------- 10-07-08 6:13:06 127.0.0.1 INFO: Controler Log INFO: Inside Controler Constructor - Requests are array ( 'PHPSESSID' => 'a439203427812c7d3a67ecfbf26d1b7b', ) -- Edit bug report at http://bugs.php.net/?id=46261&edit=1 -- Try a CVS snapshot (PHP 5.2): http://bugs.php.net/fix.php?id=46261&r=trysnapshot52 Try a CVS snapshot (PHP 5.3): http://bugs.php.net/fix.php?id=46261&r=trysnapshot53 Try a CVS snapshot (PHP 6.0): http://bugs.php.net/fix.php?id=46261&r=trysnapshot60 Fixed in CVS: http://bugs.php.net/fix.php?id=46261&r=fixedcvs Fixed in release: http://bugs.php.net/fix.php?id=46261&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=46261&r=needtrace Need Reproduce Script: http://bugs.php.net/fix.php?id=46261&r=needscript Try newer version: http://bugs.php.net/fix.php?id=46261&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=46261&r=support Expected behavior: http://bugs.php.net/fix.php?id=46261&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=46261&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=46261&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=46261&r=globals PHP 4 support discontinued: http://bugs.php.net/fix.php?id=46261&r=php4 Daylight Savings: http://bugs.php.net/fix.php?id=46261&r=dst IIS Stability: http://bugs.php.net/fix.php?id=46261&r=isapi Install GNU Sed: http://bugs.php.net/fix.php?id=46261&r=gnused Floating point limitations: http://bugs.php.net/fix.php?id=46261&r=float No Zend Extensions: http://bugs.php.net/fix.php?id=46261&r=nozend MySQL Configuration Error: http://bugs.php.net/fix.php?id=46261&r=mysqlcfg
