ID:               46261
 Updated by:       [EMAIL PROTECTED]
 Reported By:      srinivas dot shanmugam at logica dot com
-Status:           Open
+Status:           Bogus
 Bug Type:         Scripting Engine problem
 Operating System: Debian
 PHP Version:      5.2CVS-2008-10-09 (snap)
 New Comment:

Sorry, but your problem does not imply a bug in PHP itself.  For a
list of more appropriate places to ask for help using PHP, please
visit http://www.php.net/support.php as this bug system is not the
appropriate forum for asking support questions.  Due to the volume
of reports we can not explain in detail here why your report is not
a bug.  The support channels will be able to provide an explanation
for you.

Thank you for your interest in PHP.




Previous Comments:
------------------------------------------------------------------------

[2008-10-09 04:24:35] srinivas dot shanmugam at logica dot com

Sorry , only the $_POST array is not populating. $_GET array is
populating fine.

------------------------------------------------------------------------

[2008-10-09 04:20:21] srinivas dot shanmugam at logica dot com

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 this bug report at http://bugs.php.net/?id=46261&edit=1

Reply via email to