Jump to content

[SOLVED] MySQL Delete Row Suggestions


stormx

Recommended Posts

I have no clue where to start but would anyone have any suggestions on a PHP script that gets a specific date from a MySQL database table, and when the date comes the cron will delete the nominated MySQL row.

 

If you didn't quite understand what I mean, here is another example:

 

Cron >> Gets specific date from MySQL row >> If that date is the same as today’s date it will delete the row.

 

I have no clue where to start and I am very new to PHP, could anyone give an example PHP script or a recommendation.

 

Thanks 

Link to comment
https://forums.phpfreaks.com/topic/132407-solved-mysql-delete-row-suggestions/
Share on other sites

Thanks guys, this was my final code:

 

<?php

error_reporting(0);


session_start();

include 'my_sql.php';


$sql_users = mysql_query("SELECT `username` FROM `users`") or die("Error Selecting ID from users.</strong>");


while($id = mysql_fetch_array($sql_users)) {

mysql_query("UPDATE users SET suspended = '1' WHERE username = '$id[username]' AND end_date = '" .date("n/j/Y"). "'");

}

?>

 

Works like a buzz ;D

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.