start copy from cimac web

This commit is contained in:
2026-05-14 08:47:13 +02:00
commit dfc6ed40ae
3624 changed files with 899295 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
<?php include('include/headscript.php'); ?>
<?php
$idtrf=$_GET['idtrf'];
if (true) {
$DeleteQuery = new WA_MySQLi_Query($cmctrfdb);
$DeleteQuery->Action = "delete";
$DeleteQuery->Table = "`trf-details`";
$DeleteQuery->addFilter("idtrfdetails", "=", "i", "".($_GET['idtrf']) ."");
$DeleteQuery->execute();
$DeleteGoTo = "archivetrf.php";
if (function_exists("rel2abs")) $DeleteGoTo = $DeleteGoTo?rel2abs($DeleteGoTo,dirname(__FILE__)):"";
$DeleteQuery->redirect($DeleteGoTo);
}
?>