diff options
Diffstat (limited to 'async.php')
| -rwxr-xr-x | async.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/async.php b/async.php new file mode 100755 index 0000000..5664a7e --- /dev/null +++ b/async.php @@ -0,0 +1,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(); |
