示例#1
0
<?php

require_once '../../../Class/Budzet.php';
$postdata = file_get_contents('php://input');
$data = json_decode($postdata);
$budzet = new Budzet();
print $budzet->wydatekDodaj($data->kwota, $data->budzet_id, $data->secret);
示例#2
0
<?php

require_once '../../../Class/Budzet.php';
$postdata = file_get_contents('php://input');
$data = json_decode($postdata);
$budzet = new Budzet();
print $budzet->przychodDodaj($data->kwota, $data->budzet_id, $data->secret);
示例#3
0
<?php

require_once '../../../Class/Budzet.php';
$postdata = file_get_contents('php://input');
$data = json_decode($postdata);
$budzet = new Budzet();
print $budzet->budzetEdytuj($data->budzet, $data->secret);
示例#4
0
<?php

require_once '../../../Class/Budzet.php';
$postdata = file_get_contents('php://input');
$data = json_decode($postdata);
$budzet = new Budzet();
print $budzet->budzetUsun($data->id, $data->secret);
示例#5
0
<?php

require_once '../../../Class/Budzet.php';
$postdata = file_get_contents('php://input');
$data = json_decode($postdata);
$budzet = new Budzet();
print $budzet->operacjeWyplujWszystkie($data->id, $data->secret);
示例#6
0
<?php

require_once '../../../Class/Budzet.php';
$postdata = file_get_contents('php://input');
$data = json_decode($postdata);
$budzet = new Budzet();
$budzet->transferWykonaj($data->kwota, $data->budzet_dawca_id, $data->budzet_biorca_id, $data->secret);
示例#7
0
<?php

require_once '../../../Class/Budzet.php';
$postdata = file_get_contents('php://input');
$data = json_decode($postdata);
$budzet = new Budzet();
print $budzet->operacjeUsunWszystkiePoBudzetId($data->budzet_id);
示例#8
0
<?php

require_once '../../../Class/Budzet.php';
$postdata = file_get_contents('php://input');
$data = json_decode($postdata);
$budzet = new Budzet();
print $budzet->budzetWyplujWszystkie($data->secret);
示例#9
0
<?php

require_once '../../../Class/Budzet.php';
$postdata = file_get_contents('php://input');
$data = json_decode($postdata);
$budzet = new Budzet();
print $budzet->budzetDodaj($data->budzet->nazwa ? $data->budzet->nazwa : '', $data->secret);
示例#10
0
<?php

require_once '../../../Class/Budzet.php';
$postdata = file_get_contents('php://input');
$data = json_decode($postdata);
$budzet = new Budzet();
print $budzet->budzetWyplujPoId($data->id, $data->secret);