<?php

require '../header.php';

$query = "DELETE FROM " . INSTANTQTABLE;
$sth = $globaldbh->prepare($query);
$sth->execute();
exit();

?>