You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
347 B

1 year ago
<?php
namespace App\Models;
use CodeIgniter\Model;
class Mauth extends Model
{
function cekuser($username)
1 year ago
{
$query = $this->db->query("SELECT A.*,B.TP_KANTOR FROM PEGAWAI A
LEFT JOIN DIM_KANTOR B ON A.KD_KANTOR = B.KD_KANTOR WHERE A.NIP9 = '" . $username . "'");
return $query;
1 year ago
}
}