Skip to content

Instantly share code, notes, and snippets.

@ragasubekti
Created June 3, 2017 16:16
Show Gist options
  • Save ragasubekti/8f4a29eccb1c0717e19eaa504e7131d9 to your computer and use it in GitHub Desktop.
Save ragasubekti/8f4a29eccb1c0717e19eaa504e7131d9 to your computer and use it in GitHub Desktop.
<?php
public function insert($data) {
$query = $this->db->insert('video', [
'nama' => $data->nama,
'keterangan' => $data->keterangan,
'mapel' => $data->mapel,
'video_url' => $data->url,
'id_user' => $data->id_user
]);
if(!$query){
return $this->db->_error_message();
} else {
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment