discourse-legacysite-perl/site/slowtwitch.com/www/tick/events_remove.php

14 lines
249 B
PHP
Raw Normal View History

2024-06-17 12:30:36 +00:00
<?require ("global.php");?>
<?php
if (isset($_GET['tag']))
{
$tag = $_GET["tag"];
$query = "DELETE FROM events WHERE tag = '${tag}' LIMIT 1";
$result = mysql_query($query, $db);
}
header("Location: /tick/events.php");
?>