Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Update User Table

Quote Reply
Update User Table
Hi-

I have modified the Jump.pm so that each Hit not only increments the Hits field by one, but also the field called Total_Amount by the value in the field Rate:

$db->update ( { Hits => \"Hits + 1", Total_Amount => \"Total_Amount + Rate"}, { ID => $id }, { GT_SQL_SKIP_INDEX => 1 } );

So if the Rate field is set to 0.10 and the Total_Amount field starts at 0.00, then after the first hit the total amount field increments to 0.10, second hit, 0.20, etc.

I would like to also have it reduce a field called Deposit in the User table for that Link by the Rate value.

So, if the User for the Link started with 50.00 in the Deposit field (in the User Table), and one of his/her links has the Rate value of 0.10, then it would decrease the Deposit field to 49.90 for the first click on that link, 49.80 for the next click, etc...

Does anyone have any idea if it's possible to do this by modifying Jump.pm?

Any help or insights would be much appreciated!Smile

-jw



Subject Author Views Date
Thread Update User Table jwalter 6082 Oct 16, 2001, 12:08 PM
Thread Re: [jwalter] Update User Table
Paul 5913 Oct 16, 2001, 12:14 PM
Thread Re: [RedRum] Update User Table
jwalter 5918 Oct 16, 2001, 12:34 PM
Thread Re: [jwalter] Update User Table
Paul 5934 Oct 16, 2001, 12:39 PM
Thread Re: [RedRum] Update User Table
Alex 5993 Oct 16, 2001, 1:03 PM
Post Re: [Alex] Update User Table
Paul 5927 Oct 16, 2001, 1:13 PM
Thread Re: [RedRum] Update User Table
jwalter 5962 Oct 16, 2001, 1:21 PM
Thread Re: [jwalter] Update User Table
Paul 5894 Oct 16, 2001, 1:40 PM
Thread Re: [RedRum] Update User Table
jwalter 5941 Oct 16, 2001, 2:09 PM
Post Re: [jwalter] Update User Table
Matt G 5902 Oct 16, 2001, 9:04 PM
Thread Re: [jwalter] Update User Table
pugdog 5918 Oct 17, 2001, 11:24 AM
Thread Re: [pugdog] Update User Table
jwalter 5888 Oct 17, 2001, 2:25 PM
Post Re: [jwalter] Update User Table
pugdog 5888 Oct 17, 2001, 3:11 PM
Thread Re: [jwalter] Update User Table
Matt G 5858 Oct 17, 2001, 3:17 PM
Thread Re: [mglaspie] Update User Table
Alex 5925 Oct 17, 2001, 3:19 PM
Post Re: [Alex] Update User Table
jwalter 5897 Oct 18, 2001, 10:33 AM