so i have a php page update that adds 1 to the tally like this
mysql_query("update table set entry1 = entry1 + '1' where user = '$user'");
The problem is it is being used SO quickly so often that it seems it is missing alot of updates. What would be a better way of doing this that guarantees each update is counted?








Bookmarks