-1

I' building up a browsergame. I was wondering what is the best way to build up the "money" system. i no need anything "fast". I mean, the cash cuold be updated every day \ week. Is that possible doing it automatically? Like at 00.00 of every sunday it update automatically? Of course i need to update it every time someone buy something so it shuold be auto incrementing but still modificable with php query system!

Thanks a lot!

1 Answers1

1

table wallets: id, user_id, amount

 UPDATE wallets SET amount = amount+10

So you can call this query every week and it will increment all wallets by 10.

http://sqlfiddle.com/#!9/99dfe/1

Alex
  • 16,739
  • 1
  • 28
  • 51