PDA

View Full Version : lost data



michaels
09-06-2008, 10:10 AM
hi,
i am trying to retrieve data which should be saved to a db via a php query from a post request.
is there a way to find the data in a log file? they were not saved to the db ...
thanks
m

nuttycoder
09-11-2008, 09:41 AM
Not as far as I know as the data is stored in a post/get var but it does not retain it after it's been used.

felgall
09-11-2008, 01:33 PM
GET data is stored in the URL when the request is made.

POST data is stored in the headers of the page request.

In neither case does the information get stored anywhere else unless you add code into your page to do so.