Files
Ontime/backendpanel/application/models/mobile_model.php
2026-03-11 15:29:37 +07:00

18 lines
371 B
PHP
Executable File

<?php
defined('BASEPATH') or exit('No direct script access allowed');
class Mitra_model extends CI_model
{
public function topup_pulsa($data)
{
$this->db->insert('topup_pulsaMP', $data)->result_array();
return $this->db->affected_rows();
}
public function postCallback()
{
$this->db->insert('mp_callback')->result_array();
}
}