can add karyawan

This commit is contained in:
kicap1992
2021-05-01 10:38:01 +08:00
parent 7c09b4a7f6
commit 6fb6596e75
1457 changed files with 634291 additions and 1003 deletions

View File

@ -22,6 +22,15 @@ class Model extends CI_Model {
return $query;
}
function tampil_data_keseluruhan_as($namatabel,$as) //gunakan ini untuk menampilkan tabel yg lebih spesifik 'where'
{
$this->db->select($as);
$this->db->from($namatabel);
$query = $this->db->get();
return $query;
}
function tampil_data_where($namatabel,$array) //gunakan ini untuk menampilkan tabel yg lebih spesifik 'where'
{
$this->db->select("*");