1
I had to make some changes to a part of the system, and in that part before I was passing the data only by GET, but now I can go through both GET and POST, but I’m having a problem with the document.location.reload()
that does not re-upload the POST data like the ones in GET. It should have the same effect as pressing the F5 that re-sends the data.
Does anyone know how I can at least try to solve this?
I don’t know if it’s necessary, but in backend
I’m using php
I believe that because GET was passed through the URL, when updating, the data remained the same there. Already the post, the data forms are usually lost with refreshs.
– Wallace Maxters
Probably the fields (textFields) are being cleared when vc gives the first Submit.
– CCastro