OK, this is weird. I created a simple address book using php with mysql back end. So I added up to 138 lines of addresses, everything is fine. BTW I show my addresses in the input so that any user can edit it at any time. Therefore, when I click the submit button, it performs HTTP mail in all 138 lines and updates them. Everything is fine....
However, one fine day, when I tried to update the input of line 139, it discards the last input and gives an ERROR! This gives a php runtime error: "Note: Undefined index: lastN in C: \ wamp \ www \ Dawah \ go.php on line 24".
The btw LastN variable is obtained using $ _post ['lastN'].
As if there is a limit to the number of html input tags that can be submitted in one form!
I am very intrigued.
Has anyone come across this before?
source
share