我已经写了一些代码来显示用户在网站上花费的时间,但是当用户单击提交时,它应该存储在mysql中,但是没有存储,您能告诉我我在哪里做错了吗?这是我的代码。
最佳答案
您需要使用UPDATE而不是插入。
$dtime = getChangeInTime(); // this is the change in time from the last update
mysql_query( "UPDATE jcow_accounts SET `TIME_SPENT` = `TIME_SPENT` + $dtime ".
" where id='{$client['id']}'" );
关于php - 数据没有进入mysql,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6887262/