24 lines
534 B
PHP
24 lines
534 B
PHP
![]() |
<?php
|
||
|
|
||
|
ob_start();
|
||
|
|
||
|
header('Cache-Control: no-cache');
|
||
|
header('Pragma: no-cache');
|
||
|
|
||
|
include_once($_SERVER['DOCUMENT_ROOT'].'/function.php');
|
||
|
include_once($_SERVER['DOCUMENT_ROOT'].'/admin/survey/definition.php');
|
||
|
include_once($_SERVER['DOCUMENT_ROOT'].'/vendor/autoload.php');
|
||
|
|
||
|
|
||
|
$action = $_GET['action'];
|
||
|
$anketa = (int)$_GET['anketa'];
|
||
|
|
||
|
if($action == 'doIncremental' && (int)$anketa > 0) {
|
||
|
# pokličemo inkrementalno dodajanje za anketo
|
||
|
$CID = new CollectIncrementalData($anketa);
|
||
|
}
|
||
|
|
||
|
print_r($_POST);
|
||
|
print_r($_GET);
|
||
|
|
||
|
ob_flush();
|