summaryrefslogtreecommitdiff
path: root/async.php
blob: 5664a7e50156e9718ed444e8bfd19e536a6b3190 (plain)
1
2
3
4
5
6
7
8
9
10
<?php

require_once "protected/autoload.php";


$method = (isset($_POST['method'])) ?  $_POST['method'] : 'error';
$password = (isset($_POST['password'])) ?  $_POST['password'] : null;

$async = new Async($method,$password);
$async->Run();