Jump to content

interest rates


grlayouts

Recommended Posts

ok i have my own online game, when people bank it updates the database ie bank=bank+(ammount)

I want it up update by 0.03 percent or so every hour for interest.

the script i have is

[code]
<?
include('config.php');
error_reporting(E_ALL) ; ini_set('display_errors', 1);

mysql_query('UPDATE `players` SET `BANK` = `BANK` + (`BANK` * '.rand(1.01, 1.02).'), `interest` = `interest` (`bank` * '.rand(1.01, 1.02).')');
?>
[/code]

but its not working.. any ideas?
Link to comment
https://forums.phpfreaks.com/topic/36206-interest-rates/
Share on other sites

ok then, try setting the rand(1.01, 1.02) as a variable first

[code]
<?php
include('config.php');
error_reporting(E_ALL) ; ini_set('display_errors', 1);
$interest = rand(1.01, 1.02);
mysql_query("UPDATE `players` SET `BANK` = `BANK` + (`BANK` * '$interest'), `interest` = `interest` + (`BANK` * '$interest')") or die ("Cannot Update Table". mysql_error());
?>
[/code]
Link to comment
https://forums.phpfreaks.com/topic/36206-interest-rates/#findComment-172002
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.