16 lines
288 B
PHP
16 lines
288 B
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
class Sync extends CI_Controller {
|
|
function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
public function clients()
|
|
{
|
|
header('Content-Type: application/json');
|
|
print_r($_POST);
|
|
|
|
}
|
|
|
|
} |