Advertisement
GWibisono

saya kurang faham idenya mas donny

Apr 12th, 2016
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. public function SimpanDataKategori ($nama_kategori,&$err) {
  2. $err=null;
  3. try {
  4. $sql = $this->db->prepare("INSERT INTO tbl_kategoris (id_kategori, nama_kategori) VALUES (UUID(), ?)");
  5. $sql->bindParam(1, $nama_kategori, PDO::PARAM_STR);
  6. $sql->execute();
  7.  
  8.  
  9. } catch (Exception $e) {
  10. $err= $e->getMessage();
  11. }
  12.  
  13. return is_null($err)?true:false;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement