![]() |
Can you find a problem here?
Can you find any reason why this code would occasionally remove double the money from the user?
PHP Code:
Thanks. |
well, a problem i had with a game i wrote was that i was comparing the money to a value loaded when the script started part way thru the scripts execution you then update based on the value in the database which might have changed since you loaded it.
If you change your db query to update to a set value it will reduce the problem. $test->db->query("update test_user set money=money-'{$Land_Cost}' where uid='{$test->user['uid']}'"); should be $newmoney = $test->user['money'] - $Land_Cost; $test->db->query("update test_user set money=$newmoney where uid='{$test->user['uid']}'"); a second way which may not be possible depending on your setup is to change your database engine to innodb and use row locking to prevent the data being changed while you are modifying it. |
You should think about using switch() here instead of all these ifstatements:
PHP Code:
PHP Code:
|
Quote:
Opserty, thanks for the recommendation. Even though my goal is accomplished with my current setup, I'll definitely change it over to what you posted. Thanks. |
my eventual solution to this was a very complicated form setup whereby each form was only submittable once.
You add an extra field 'formhash' to your forms, in the php you set a session variable $_SESSION['formhashes'] which is an array of all valid hashes. So you might have something like this: $_SESSION['formhash'] = array('formhash1'=>1,'formhash2'=>0); formhash 2 having been used is invalidated; when the script is finished processing you can delete it entrily from the array. I generated the hashes by simply MD5ing the timestamp . a random number . their userid If a form with an invalid formhash is submitted you reject the data. I had this builtin to my input handling class so it was seamless on the forms it was used on. |
All times are GMT. The time now is 12:59 PM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|