Posted by DonO on 07/11/07 16:20
On Jul 10, 5:42 am, sebek <sebekgr...@o2.pl> wrote:
> Hi,
> I have problem with my form which have 240 <input type="text"...>
> fields. The browser show the whole form but when I send my $_POST is
> not complet. I have about 200 data. I send form by POST. My
> post_max_size is 16MB.
> Is it server problem or browser? I try in FireFox and IE but not work.
>
> Thanx for help!
You could try putting the following on the page that is the "ACTION"
of your form...
<?php // show what's being sent in post
echo "<pre>"; // will help with display
print_R($_POST); // show what's sent in POST scope
echo "</pre>"; // close preformatting
exit;
This should show you all that's being sent from the form. Enter in
dummy data for all the fields (sequential letters/numbers helps track
down problems) and you'll have more feedback.
D.
Navigation:
[Reply to this message]
|