Discussion: $_POST and input
Afficher un message
Vieux 11/07/2007, 17h20   #3
DonO
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: $_POST and input

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 !


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 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 s track
down problems) and you'll have more feedback.

D.

  Réponse avec citation
 
Page generated in 0,05219 seconds with 9 queries