== spec ===
PHP 4.4.1
Apache 1.3
Windows XP
== spec ===
Hi,
I have this pretty bizzard problem. I just install PHP and Apache on my system. I realize that if I submit a form with "post" method of an array, the first 4 characters of my variable will get dropped!
code:
<?php
var_dump($_REQUEST);
?>
<form method="post">
<input name="a[]" value="123456789" />
<input type="button" onClick="this.form.submit();" />
</form>
html output:
array(1) { ["a"]=> array(1) { [0]=> string(5) "56789" }
please advise,
Thanks!!
Justin