Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
$time_delete = strtotime("+7 day");
$time_now = time();
$query = mysql_query("SELECT id,expire FROM `obqvi` WHERE expire <= '$time_now' ") or die(mysql_error());
while($row = mysql_fetch_array($query)) {
$id = $row['id'];
$sql = mysql_query("DELETE FROM `obqvi` WHERE `id` = '$id' LIMIT 1 ;");
}