reportify_mncl/public/userarea/easyspec/cancel-standards.php
2024-06-10 10:07:23 +02:00

14 lines
533 B
PHP

<?php include('../include/headscript.php'); ?>
<?php include("../class/company.php"); ?>
<?php if (true) {
$DeleteQuery = new WA_MySQLi_Query($repnew);
$DeleteQuery->Action = "delete";
$DeleteQuery->Table = "`standards`";
$DeleteQuery->addFilter("idstandards", "=", "i", "" . ($_GET['id']) . "");
$DeleteQuery->execute();
$DeleteGoTo = "standards.php";
if (function_exists("rel2abs")) $DeleteGoTo = $DeleteGoTo ? rel2abs($DeleteGoTo, dirname(__FILE__)) : "";
$DeleteQuery->redirect($DeleteGoTo);
}
?>