diff options
| author | yo mama <pepper@scannerjammer.com> | 2015-04-04 01:11:47 -0700 |
|---|---|---|
| committer | yo mama <pepper@scannerjammer.com> | 2015-04-04 01:11:47 -0700 |
| commit | a736da57f084017ac17e06cd9db19b1fd166e1a6 (patch) | |
| tree | 55a9e83b31f6bdc176731125de0cc42668daf988 /async.php | |
first
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(); |
