14 lines
568 B
PHP
14 lines
568 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 = "`component_family`";
|
|
$DeleteQuery->addFilter("idcomponentfamily", "=", "i", "" . ($_GET['idcomponentfamily']) . "");
|
|
$DeleteQuery->execute();
|
|
$DeleteGoTo = "component-family.php";
|
|
if (function_exists("rel2abs")) $DeleteGoTo = $DeleteGoTo ? rel2abs($DeleteGoTo, dirname(__FILE__)) : "";
|
|
$DeleteQuery->redirect($DeleteGoTo);
|
|
}
|
|
?>
|