Hello All,
A strange thing just started happening on my site when my ISP upgraded to PHP 4.2.3. When I send POST data through in an array, the first four characters of the data get erased.
For example, if this is the form in html:
<input type=text name=var[one] size=10>
<input type=text name=var[two] size=10>
And I submit these, the action page receiving these variables cuts off the first four characters of each text field.
Say I entered the word "something" for each field, if I print out phpinfo() on the action page, the POST variables look like this:
_POST[var] Array
(
one => "thing"
two => "thing"
)
so the vars are getting cut off somewhere before making it to the form action page.
The site I'm working on just went live so I'm kind of scrambling to figure this one out. Any help is much appreciated.
-Russell