473,385 Members | 1,392 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

URGENT HELP - form submit stops working when so many check boxes checked - Why?

Hi there,

A PHP application I built has a section which lists a number of members to a
club whose names each appear with a check box beside them that can be
ticked.

These check boxes are part of a form which amongst other submit buttons has
a one particular submit button that if checked will send the form data
(using GET) to a script that will email all the checked members.

The client today phoned to say that when the check a few members on the form
(only about 10 actually) and pressed the submit button it done nothing (In
fact all submit buttons on form stop working). A can verify this behaviour
and also note that if I reduce the amount of checked members I can then make
the submit button work again!

This is bizarre. My initial thoughts are this may be something to do with it
being a GET post and there being a maximum length, but really I moved the
form to a GET method because I wanted the users to be able to use the back
button on the browser to come back to the page (I had trouble doing this
other ways).
Also I thought I would post this right away in case this is a recognised
scenario with an easy fix.

Please help and thanks in advance for any advice.

Dave
Jul 17 '05 #1
17 2735


Dave Smithz wrote:
Hi there,

A PHP application I built has a section which lists a number of members to a
club whose names each appear with a check box beside them that can be
ticked.

These check boxes are part of a form which amongst other submit buttons has
a one particular submit button that if checked will send the form data
(using GET) to a script that will email all the checked members.

The client today phoned to say that when the check a few members on the form
(only about 10 actually) and pressed the submit button it done nothing (In
fact all submit buttons on form stop working). A can verify this behaviour
and also note that if I reduce the amount of checked members I can then make
the submit button work again!

This is bizarre. My initial thoughts are this may be something to do with it
being a GET post and there being a maximum length, but really I moved the
form to a GET method because I wanted the users to be able to use the back
button on the browser to come back to the page (I had trouble doing this
other ways).
Also I thought I would post this right away in case this is a recognised
scenario with an easy fix.

Please help and thanks in advance for any advice.

Dave


doesn't look like a php problem, but anyway:

a couple of ideas come to mind:

1. check the html generated by your php script

2. try different browsers to check wether this is a browser problem

3. try using POST to check wether your form works at all

4. check/disable any javascript that might interfere with posting

this will hopefully bring you a bit closer to the error.

micha

Jul 17 '05 #2
Dave Smithz wrote:
A PHP application I built has a section which lists a number of members to a
club whose names each appear with a check box beside them that can be
ticked...


I created a webpage that solves your problem. But I, like you, will
not list the URL in the message...

--
-=tn=-

Jul 17 '05 #3

"Travis Newbury" <Tr***********@hotmail.com> wrote in message
Dave Smithz wrote:
A PHP application I built has a section which lists a number of members
to a
club whose names each appear with a check box beside them that can be
ticked...


I created a webpage that solves your problem. But I, like you, will
not list the URL in the message...


I'm not sure I understand. I cannot list the URL because it requires
password access and has confidential data protected by data protection act
etc.
If you had the same problem, what was causing it and how did you solve it?

Thanks
Jul 17 '05 #4
rf
Dave Smithz
I'm not sure I understand. I cannot list the URL because it requires
password access and has confidential data protected by data protection act
etc.
My car is broken. What is wrong?
If you had the same problem, what was causing it and how did you solve it?


I showed the car bloke at the garage my bloody car!

Cheers
Richard.
Jul 17 '05 #5
Dave Smithz wrote:
I created a webpage that solves your problem. But I, like you, will
not list the URL in the message...

I'm not sure I understand. I cannot list the URL because it requires
password access and has confidential data protected by data protection act
etc.


No one can know if they have the same problem becuase when we make such
a page it works. We don't know what you did to make it not work.

Take your code and make a dummy page that displays the problem.
Chances are, when you make that dummy page the solution will be obvious
to you. If not, then we will at least be able to see what you did.

--
-=tn=-

Jul 17 '05 #6
Dave Smithz wrote:
A PHP application I built has a section which lists a number of members to a
club whose names each appear with a check box beside them that can be
ticked.

These check boxes are part of a form which amongst other submit buttons has
a one particular submit button that if checked will send the form data
(using GET) to a script that will email all the checked members.


Hi Dave,

If it only happens when quite some data is being sent through a GET
request (i.e. many checkboxes), it might be that the limit of size of
the GET request is being exceeded.
As chotiwallah already suggested; try it with POST to be sure.

--
http://www.phpforums.nl
Jul 17 '05 #7
Dave Smithz wrote:
Hi there,

A PHP application I built has a section which lists a number of
members to a club whose names each appear with a check box beside
them that can be ticked.

These check boxes are part of a form which amongst other submit
buttons has a one particular submit button that if checked will send
the form data (using GET) to a script that will email all the checked
members.
The client today phoned to say that when the check a few members on
the form (only about 10 actually) and pressed the submit button it
done nothing (In fact all submit buttons on form stop working). A can
verify this behaviour and also note that if I reduce the amount of
checked members I can then make the submit button work again!

This is bizarre. My initial thoughts are this may be something to do
with it being a GET post and there being a maximum length, but really
I moved the form to a GET method because I wanted the users to be
able to use the back button on the browser to come back to the page
(I had trouble doing this other ways).


This is exactly what I thought. Have you even tried it with POST? Also, why
would there be a problem with POST?

Berislav
Jul 17 '05 #8

"Berislav Lopac" <be************@lopsica.com> wrote in message
news:db**********@garrison.globalnet.hr...
Dave Smithz wrote

OK been a busy day, but looks like (although not thoroughly tested it)
changing to POST solved it. However, when I was choosing the GET method, I
did query whether there would be a limit and it was not clear.

I am sure this sort of behaviour would have been well documented and well
known about.

In summary, if I create a webpage with many submit buttons with all slightly
different names (so I can work out which one has been pressed) and it also
has many check boxes, when I check over a certain number of these check
boxes all submit buttons stop working. I can then literally uncheck some
until I get to a point where the submit buttons will work again.

This seems to be a general case for me. I thought this would type of
limitation would be common knowledge to experts, or maybe I am still doing
something wrong.

I will carry on my investigations and report any interesting findings. the
problem with the post method is that my clients like to use the back button
and post does not work as well as get when it comes to actually seeing what
you had on the page before when you press the back button.

Kind regards

Dave

Jul 17 '05 #9
Dave Smithz wrote:
I will carry on my investigations and report any interesting findings. the
problem with the post method is that my clients like to use the back button
and post does not work as well as get when it comes to actually seeing what
you had on the page before when you pres


Dave,

The GET limitation *is* common knowledge.
About the back button: my guess is your clients are using IE 6 if I read
your comment on the Back button behaviour.
That's a common bug in IE6, but you can easily solve this by adding:

header("Cache-control: private");

at the top of your script.

--
http://www.phpforums.nl
Jul 17 '05 #10
Dave Smithz wrote:
This seems to be a general case for me. I thought this would type of
limitation would be common knowledge to experts, or maybe I am still
doing something wrong.


As Peter said, it is common knowledge. The thing is that, IIRC, Web server
(e.g. Apache or IIS) can set this limit in a configuration, so there is no
telling what is the limit in any single case.

Berislav
Jul 17 '05 #11
Peter van Schie wrote:
About the back button: my guess is your clients are using IE 6 if I read
your comment on the Back button behaviour.
That's a common bug in IE6, but you can easily solve this by adding:

header("Cache-control: private");


Do you think that's a good workaround?

--
Jock
Jul 17 '05 #12
John Dunlop wrote:
About the back button: my guess is your clients are using IE 6 if I read
your comment on the Back button behaviour.
That's a common bug in IE6, but you can easily solve this by adding:

header("Cache-control: private");

Do you think that's a good workaround?


I'm not sure where you want to go with this question, but yes it is a
workaround that works. From a user's perspective it's a tedious job
having to fill out a form again with the same information after using
the Back button.

--
http://www.phpforums.nl
Jul 17 '05 #13
Peter van Schie wrote:
John Dunlop wrote:
[Peter van Schie wrote:]
About the back button: my guess is your clients are using IE 6 if I read
your comment on the Back button behaviour.
That's a common bug in IE6, but you can easily solve this by adding:

header("Cache-control: private");


Do you think that's a good workaround?


I'm not sure where you want to go with this question,


anywhere you like, and I'll follow.
but yes it is a workaround that works.
Ok, if there's compelling arguments *for* that caching
directive - excluding working around IE6's bug - and less
compelling ones, if any, *against* it, why aren't you sending
it in the first place? If, on the other hand, the arguments
lead you to decide on a different value, say 'public', which
one influences you more: those arguments, or IE6's bug? (I'm
not looking for answers here, since I could care less about
individual situations; just suggesting things to think about.)
From a user's perspective it's a tedious job having to fill out a form
again with the same information after using the Back button.


Yes.

[By a strict interpretation of RFC2616, they'd have to fill
the form in again anyway. But I find that isn't always the
case in reality]

--
Jock
Jul 17 '05 #14
John Dunlop wrote:
Ok, if there's compelling arguments *for* that caching
directive - excluding working around IE6's bug -
That depends on the application.
and less
compelling ones, if any, *against* it
Not that I know of, so I don't see any reason to not use it.
If there are major drawbacks I'd be glad to be informed about them.
, why aren't you sending
it in the first place?
But I do.
I only suggested it to Dave to circumvent the "Back button problem".
If, on the other hand, the arguments
lead you to decide on a different value, say 'public', which
one influences you more: those arguments, or IE6's bug? (I'm
not looking for answers here, since I could care less about
individual situations; just suggesting things to think about.)


As you already said; that's an individual situation issue. I can't
remember any case in which I needed both.
Besides that there are multiple ways that lead to Rome.

--
http://www.phpforums.nl
Jul 17 '05 #15
With neither quill nor qualm, "Dave Smithz" <SPAM FREE WORLD> quothed

"Travis Newbury" <Tr***********@hotmail.com> wrote in message
Dave Smithz wrote:
A PHP application I built has a section which lists a number of members
to a
club whose names each appear with a check box beside them that can be
ticked...


I created a webpage that solves your problem. But I, like you, will
not list the URL in the message...


I'm not sure I understand. I cannot list the URL because it requires
password access and has confidential data protected by data protection act
etc.
If you had the same problem, what was causing it and how did you solve it?


I think what he's saying is that the problem and your description of the
problem are not the same thing.

--
Neredbojias
Contrary to popular belief, it is believable.
Jul 17 '05 #16
Peter van Schie wrote:
I only suggested it to Dave to circumvent the "Back button problem".


Ok, let me put it another way. If 'Cache-Control: private' is
appropriate and you send it, the problem you speak of won't
arise; but if it's inappropriate, should you* send it at all?
* generic 'you'.

--
Jock
Jul 17 '05 #17
JDS
On Fri, 15 Jul 2005 10:51:48 +0200, Berislav Lopac wrote:
As Peter said, it is common knowledge. The thing is that, IIRC, Web server
(e.g. Apache or IIS) can set this limit in a configuration, so there is no
telling what is the limit in any single case.


It is a browser-based and not a server-based limit.

The same queries to the same server that do not work in MSIE *will* often
work in gecko-based (and other) browsers (Moz, et.al)

On a side note, this is one of the few times when, IMO, a MSIE difference
in implementation is, once agin, IMO, No Big Deal(TM). As opposed to all
the MSIE bugs in, for example, CSS rendering, this GET vs POST limitation
is not a bug but merely a particular interpretation of the W3C
recommendations. One that other browsers have interpreted more liberally.

Whatever. later...

--
JDS | je*****@go.away.com
| http://www.newtnotes.com
DJMBS | http://newtnotes.com/doctor-jeff-master-brainsurgeon/

Jul 18 '05 #18

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Edward | last post by:
The following html / javascript code produces a simple form with check boxes. There is also a checkbox that 'checks all' form checkboxes hotmail style: <html> <head> <title></title> </head>...
5
by: VbUser25 | last post by:
hi i need urgent responses.. i have some 15 checkboxex on a form... i want to 1st check the no. of checkboxes that are checked?? and then loop it that many times adn insert the quantities the...
1
by: sman | last post by:
Hi, I recently read this article on About.com on how to create required fields for a form: http://javascript.about.com/library/scripts/blformvalidate.htm Everything works great except that there...
2
by: Ceema M via DotNetMonster.com | last post by:
Hello all, I have a nested repeater, which displays categories(parent repeater) and corresponding subcategories(child repeater). Both repeaters have checkboxes. When I check category checkbox...
2
by: Cerebral Believer | last post by:
Hi folks, Can anyone help me with this form: http://futurebydesign-music.com/_member/club_fbd_reg.php I have followed to coding instructions aas closely as I can, but I am getting errors...
11
by: Rik | last post by:
Hello guys, now that I'm that I'm working on my first major 'open' forms (with uncontrolled users I mean, not a secure backend-interface), I'd like to add a lot of possibilities to check wether...
12
by: liamo | last post by:
Don't laugh lol I know your all php guru's : ) Ok, so I have little if any knowledge with the programming language php - only having created small enquiry forms. Now I have a client that needs a...
6
by: Harshpandya | last post by:
Hi all, I am working on the form in which you fill out the whole PHP form and e mail that details to someone. It is working fine. But now i want to send the same form to be sent to different...
5
by: plumba | last post by:
Hi all I have a form (see below), which for some reason has decided to stop functioning all together. It just does not call up the function. It is called up in the opening <form> tag but...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.