Any help would be fantastic. Thanks a ton.!
md5 hash files.
Moderator: General Moderators
md5 hash files.
Howdy. Been searching this for a couple days now. I need a way to retrieve information stored in one of my tables after a user has left my site and come back without having any variables to go by(leaving site by means of payment redirection). is there someway to detect session or something similiar so the server will know what information was inputted by who and to retrieve it and move it to a new table within the same db. from a temporary table to a record keeping table.? if this isnt possible, is there a way to create the ability to recall certain elements from a table with minimal user input? I was thinking give the user a record number and have them input it after they complete the transaction.
Any help would be fantastic. Thanks a ton.!
Any help would be fantastic. Thanks a ton.!
- superdezign
- DevNet Master
- Posts: 4135
- Joined: Sat Jan 20, 2007 11:06 pm
so, i hate be a bothersome prat who knows nothing. but where would I start looking for the help on this one? As in what function i need to research and whatnot! 
Thanks a ton.
,and if thats true about them thumping the redirection url with a completion status that would be fantastic. I should contact paypal again today and find out!
Thanks a ton.
,and if thats true about them thumping the redirection url with a completion status that would be fantastic. I should contact paypal again today and find out!
- superdezign
- DevNet Master
- Posts: 4135
- Joined: Sat Jan 20, 2007 11:06 pm
- superdezign
- DevNet Master
- Posts: 4135
- Joined: Sat Jan 20, 2007 11:06 pm
hmmm...came up with this.
Client Form to temptable > mysql query id num > store id num in session data > payment page > confirm page.
where confirm page runs this
INSERT INTO newtable (var1, var2, var3, ...) SELECT var1, var2, var3, ... FROM oldtable WHERE oldtable.id = '123456'
and i grab the oldtable id from the user's session data.
Look legit.?
Client Form to temptable > mysql query id num > store id num in session data > payment page > confirm page.
where confirm page runs this
INSERT INTO newtable (var1, var2, var3, ...) SELECT var1, var2, var3, ... FROM oldtable WHERE oldtable.id = '123456'
and i grab the oldtable id from the user's session data.
Look legit.?