ID: 38416 User updated by: oren at telebox dot co dot il Reported By: oren at telebox dot co dot il -Status: Bogus +Status: Open Bug Type: MySQL related Operating System: linux rh9 PHP Version: 5.1.4 New Comment:
OK i explain my salf better the time difference in database are 1-6 sec for example the difference between 2006-08-10 15:39:22 and 2006-08-10 15:39:37 is not 13 sec these 15 sec Previous Comments: ------------------------------------------------------------------------ [2006-08-10 13:45:31] [EMAIL PROTECTED] Sorry, but your problem does not imply a bug in PHP itself. For a list of more appropriate places to ask for help using PHP, please visit http://www.php.net/support.php as this bug system is not the appropriate forum for asking support questions. Due to the volume of reports we can not explain in detail here why your report is not a bug. The support channels will be able to provide an explanation for you. Thank you for your interest in PHP. ------------------------------------------------------------------------ [2006-08-10 13:40:56] oren at telebox dot co dot il Description: ------------ Hello the bug is where i write sql string with date info i get strange result Reproduce code: --------------- $sql = "UPDATE `stat` SET `total`=TIME_TO_SEC(TIMEDIFF('".date("Y-m-d H:i:s")."',startime)) , endtime = '".date("Y-m-d H:i:s")."' WHERE `hendel`='$hendel'"; Expected result: ---------------- the result is lateness of 1 - 6 seconds Actual result: -------------- the way i find to bypass the problem is . $nowsss=date("Y-m-d H:i:s"); $sql = "UPDATE `stat` SET `total`=TIME_TO_SEC(TIMEDIFF('".$nowsss."',startime)) , endtime = '".$nowsss."' WHERE `hendel`='$hendel'"; ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=38416&edit=1