Guest User

Untitled

a guest
Nov 15th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. public function input_detail_barang()
  2. {
  3. $id_data = $this->input->post('id_data');
  4. $no_inv = $this->input->post('no_inv');
  5. $condition = $this->input->post('condition');
  6.  
  7. $data = array
  8. (
  9. 'id_data' => $id_data,
  10. 'no_inv' => $no_inv,
  11. 'condition' => $condition
  12. );
  13.  
  14. //I need amount from first form, because i will use it. How can i do?
  15.  
  16. $amount = $this->session->userdata("Firstformdata");
  17. echo $amount['amount'];
  18. }
Add Comment
Please, Sign In to add comment