I am using php to give a survey. There are about 75 pages, each page loads a different question from a mysql database. A string is built and grows as you go from one page to another (sql statement). A few other things are passed but very small. The sql string never gets beyond 2000 characters and I am being generous with that number.
Everything is being passed via $_POST
My problem is that sometimes I will get a "Page cannot be displayed error". Sometimes I get unidentified index errors. There is no delay before I get these errors, so I do not think that it is timing out. Also, these errors only seem to occur as the sql string gets relatively (key word there) large.
Here's the strange part: Sometimes the errors don't occur, sometimes they do - with identical things being passed. If I get an error and hit the browsers back arrow, then click continue I will go through without the error (sometimes this must be done several times). I don't have direct acces to the server but can find out settings and have things changed in it.
Thanks for any help.
Everything is being passed via $_POST
My problem is that sometimes I will get a "Page cannot be displayed error". Sometimes I get unidentified index errors. There is no delay before I get these errors, so I do not think that it is timing out. Also, these errors only seem to occur as the sql string gets relatively (key word there) large.
Here's the strange part: Sometimes the errors don't occur, sometimes they do - with identical things being passed. If I get an error and hit the browsers back arrow, then click continue I will go through without the error (sometimes this must be done several times). I don't have direct acces to the server but can find out settings and have things changed in it.
Thanks for any help.