14 lines
213 B
PHP
14 lines
213 B
PHP
<?php
|
|
|
|
use Location\Loto;
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] != 'POST') {
|
|
exit;
|
|
}
|
|
|
|
if (!defined('GAME_VERSION')) {
|
|
require_once '_incl_data/autoload.php';
|
|
}
|
|
|
|
Loto::paidRoll(file_get_contents('php://input'));
|