13 lines
223 B
PHP
Executable File
13 lines
223 B
PHP
Executable File
#!/usr/local/bin/php
|
|
<?php
|
|
error_reporting(E_ERROR | E_PARSE);
|
|
ini_set('display_errors',true);
|
|
set_time_limit(10);
|
|
|
|
sleep(30);
|
|
|
|
require_once('../include/crunchbutton.php');
|
|
|
|
$order = new Order($argv[1]);
|
|
$order->receipt();
|