0
1
Fork 0
hedera-web-mindshore/rest/tpv/confirm-post.php

18 lines
249 B
PHP
Raw Normal View History

2016-07-22 20:00:27 +00:00
<?php
require_once ('vn/web/json-request.php');
2016-08-22 10:41:05 +00:00
require_once (__DIR__.'/tpv.php');
2016-07-22 20:00:27 +00:00
/**
* Gets transaction confirmation from HTTP POST.
**/
2016-08-23 13:15:19 +00:00
class ConfirmPost extends Vn\Web\HttpRequest
2016-07-22 20:00:27 +00:00
{
function run ()
{
2016-08-22 10:41:05 +00:00
Tpv::confirm ($db, $_POST);
2016-07-22 20:00:27 +00:00
}
}
?>