Jump to content

Delete Row After 30 Mins


aeboi80

Recommended Posts

Allow me to preface this post with the fact that I am not very familiar with sql statements and such, but I have been tasked with completing this job.  I have a table called users which contains the following fields:

 

id int(11)
username varchar(15)
password varchar(41)
userlevel int(11)
timestamp time

 

I need to have a row deleted after 30 minutes of it being created.  I plan to use a cronjob to accomplish this...but I alas I don't know the sql to do it.  Here is the code I have so far:

 

<?php
$con = mysql_connect("localhost","test","abcd1234");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }

mysql_select_db("test", $con);

$currentTime = time();
$deleteTime = time() - (1800);


mysql_query("DELETE FROM users WHERE userlevel='3' && $deleteTime <= $ currentTime");

mysql_close($con);

?>

 

As you can see I am not sure what to do because this is obviously not correct.  First I realize I am dealing with a MySQL timestamp and trying to use a Unix-Timestamp and not sure how to get around this.  I have searched Google and found several variations, but nothing I can piece together to make it work.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.