added charts and fixed analysis component
This commit is contained in:
@@ -3,14 +3,16 @@
|
||||
<?php include("../class/company.php"); ?>
|
||||
<?php
|
||||
?>
|
||||
<?php if (true) {
|
||||
$DeleteQuery = new WA_MySQLi_Query($repnew);
|
||||
$DeleteQuery->Action = "delete";
|
||||
$DeleteQuery->Table = "`analysis`";
|
||||
$DeleteQuery->addFilter("idanalysis", "=", "i", "" . ($_GET['idanalysis']) . "");
|
||||
$DeleteQuery->execute();
|
||||
$DeleteGoTo = "analysis.php";
|
||||
if (function_exists("rel2abs")) $DeleteGoTo = $DeleteGoTo ? rel2abs($DeleteGoTo, dirname(__FILE__)) : "";
|
||||
$DeleteQuery->redirect($DeleteGoTo);
|
||||
<?php
|
||||
if (true) {
|
||||
$UpdateQuery = new WA_MySQLi_Query($repnew);
|
||||
$UpdateQuery->Action = "update";
|
||||
$UpdateQuery->Table = "`analysisvocabulary`";
|
||||
$UpdateQuery->addFilter("idanalysisvocabulary", "=", "i", "" . ($_GET['idanalysis']) . "");
|
||||
$UpdateQuery->addColumn("active", "s", "N"); // Imposta il campo active a 'N'
|
||||
$UpdateQuery->execute();
|
||||
$UpdateGoTo = "analysis.php";
|
||||
if (function_exists("rel2abs")) $UpdateGoTo = $UpdateGoTo ? rel2abs($UpdateGoTo, dirname(__FILE__)) : "";
|
||||
$UpdateQuery->redirect($UpdateGoTo);
|
||||
}
|
||||
?>
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user