d2jsp
Log InRegister
d2jsp Forums > Off-Topic > Computers & IT > Programming & Development > Php 5.3.1 > Post Bug
Add Reply New Topic New Poll
Member
Posts: 2,551
Joined: Sep 14 2003
Gold: 106.11
Nov 22 2009 02:20am
I was testing out the new release of PHP 5.3.1 which is supposed to be stable. It was working fine until I noticed a submitted array of checkboxes to the PHP Script returns an empty array. The exact same code works on previous versions. The checkboxes are regular arrays that contain the index id of the sql field.
Code
$check_list.= '<input type="checkbox" name="list['.$id.']" />';

When this is submitted via an html form. The $_POST['list'] is entirely empty.

Anyone else run into this issue or am I just having some idiotic freak accident.
Server setup is Apache 2.2.14 with PHP 5.3.1.
Something's wrong with PHP as I also tested it using the Command Prompt on a windows based system.

Let me know.
Member
Posts: 2,721
Joined: Jan 10 2009
Gold: 0.00
Nov 22 2009 05:59am
Was the entire length under 100 characters, or does that not apply in this release?

I'm still stuck with 5.3.0, and noticed no bugs.
Member
Posts: 6,953
Joined: Sep 27 2003
Gold: 518.50
Nov 22 2009 11:51am
Are you sure it's PHP? As in, have you observed the exact POST you're sending to the server with TamperData?
Member
Posts: 2,551
Joined: Sep 14 2003
Gold: 106.11
Nov 22 2009 03:01pm
Quote (ASBands @ 22 Nov 2009 12:51)
Are you sure it's PHP?  As in, have you observed the exact POST you're sending to the server with TamperData?


Yes. I've tested with versions less than and equal to 5.3.0. The same code works flawlessly for those versions. TamperData shows it being sent. PHP still returns the $_POST['list'] as an empty value.

It recognizes it exist but it's empty.

Quote (Indigestion @ 22 Nov 2009 06:59)
Was the entire length under 100 characters, or does that not apply in this release?

I'm still stuck with 5.3.0, and noticed no bugs.


The length was under 100 Characters.
Go Back To Programming & Development Topic List
Add Reply New Topic New Poll