U
UKuser
Hi,
I have a page where multiple fields can be edited:
Name Age DOB
[name1] [age1] [dob1]
[name2] [age2] [dob2]
[name3] [age3] [dob3]
[name4] [age4] [dob4]
[name5] [age5] [dob5]
Where you can type in any of the fields etc and with one click all
these get updated by Javascript concatenating them into one variable,
escaped and passed through GET.
However I've discovered that when there are LOTS of entries, I have a
problem - I.E. seems to restrict the length of a URL to 2KB whereas FF
appears to be much higher.
Is there an alternative way to somehow send this data to my PHP
script? Would POST face the same restrictions and is it better/worse
than using GET for AJAX?
Thanks
A
I have a page where multiple fields can be edited:
Name Age DOB
[name1] [age1] [dob1]
[name2] [age2] [dob2]
[name3] [age3] [dob3]
[name4] [age4] [dob4]
[name5] [age5] [dob5]
Where you can type in any of the fields etc and with one click all
these get updated by Javascript concatenating them into one variable,
escaped and passed through GET.
However I've discovered that when there are LOTS of entries, I have a
problem - I.E. seems to restrict the length of a URL to 2KB whereas FF
appears to be much higher.
Is there an alternative way to somehow send this data to my PHP
script? Would POST face the same restrictions and is it better/worse
than using GET for AJAX?
Thanks
A