Advertisement
freddy0512

model

Apr 27th, 2015
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1.  
  2. public function cetak(){
  3. $dari=$this->input->post('dari');
  4. $sampai=$this->input->post('sampai');
  5. return $this->db->query("SELECT * FROM tabel_penjualan a, tabel_pelanggan b WHERE a.tgl BETWEEN '$dari' AND '$sampai' and a.id_pelanggan=b.id_pelanggan");
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement