16 lines
288 B
PHP
Raw Permalink Normal View History

2024-07-10 18:28:19 +05:45
<?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);
}
}