Advertisement
Guest User

Untitled

a guest
Jul 20th, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. public function bayar()
  2. {
  3. $txt_bayar = $_POST[\'txt_bayar\'];
  4. $nim = $_POST[\'nim\'];
  5. $total = $this->cart->total();
  6. $sisa = $txt_bayar - $total;
  7. if ($sisa >=0) {
  8. //$this->session->set_flashdata(\'message\', \'Transaksi Selesai\');
  9. //redirect(base_url().\'admin/Transaksi\');
  10. //$result['status'] = 1;
  11. echo json_encode($hasil);
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement