How to insert values into database table every two minutes?
I have code that doing every second that will explode my mysql database, which I do not want it happen. So I want to set it to 2 min.
$query="INSERT INTO $tablename VALUES ($temp,now())";
Here is the code for every second sent it to my databse.
and the code below is to set it two min , but is doesn't work
$timestamp=DATE_SUB(now(), INTERVAL 2 MINUTE);
$query="INSERT INTO $tablename VALUES ($temp,$timestamp)";
Some help me . thanks
wgets it?