php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #19792 First POST variable always has its first char missing
Submitted: 2002-10-06 20:32 UTC Modified: 2002-11-14 01:48 UTC
Votes:1
Avg. Score:5.0 ± 0.0
Reproduced:0 of 0 (0.0%)
From: plastic at ncnet dot pl Assigned:
Status: No Feedback Package: IIS related
PHP Version: 4.2.3 OS: Windows NT 5.0 build 2195
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: plastic at ncnet dot pl
New email:
PHP Version: OS:

 

 [2002-10-06 20:32 UTC] plastic at ncnet dot pl
When I send some data using POST method, PHP looses first char of the first variable's name. For example:

<!-- my html file -->
<form action="some_file.php" method="POST">
<input name="first_var" value="some_value">
<input name="second_var" value="other_value">
</form>


<!-- some_file.php -->
<?

print_r($_POST);
?>

I get:

Array
(
    [irst_var] => some_value
    [second_var] => other_value
)


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-10-06 20:40 UTC] plastic at ncnet dot pl
server: Microsoft-IIS/5.0
 [2002-10-08 13:37 UTC] iliaa@php.net
Are you using PHP as CGI?
 [2002-10-17 19:12 UTC] plastic at ncnet dot pl
give me some more time......this server is in other country and I'm waiting for its administrator reply.
 [2002-10-30 11:41 UTC] iliaa@php.net
Please try using this CVS snapshot:

  http://snaps.php.net/php4-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php4-win32-latest.zip


 [2002-11-14 01:48 UTC] sniper@php.net
No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Open". Thank you.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Mar 19 09:01:30 2024 UTC