|
|
|
#1 |
|
Messages: n/a
Hébergeur: |
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 ! |
|
|
|
#2 |
|
Messages: n/a
Hébergeur: |
On Jul 10, 6: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 ! My crystal ball is in for repairs today. Perhaps if you included your code we could you. |
|
|
|
#3 |
|
Messages: n/a
Hébergeur: |
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. |
|
|
|
#4 |
|
Messages: n/a
Hébergeur: |
DonO napsal(a):
> 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. > IMHO you should divide that form into more that one site, ie. 50 input boxes per site. 240 input boxes on one site is something terrible. Ondrej Flidr |
|
![]() |
| Outils de la discussion | |
|
|