This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public function add_ticket_after_payment_success() | |
{ | |
$inputs['user_id'] = $this->input->post('user_id'); | |
$inputs['order_ammount_type'] = $this->input->post('order_ammount_type'); | |
// 1 using coins ,2 online transaction payment getway | |
$inputs['transaction_id'] = $this->input->post('transaction_id'); | |
$inputs['ammount'] = $this->input->post('ammount'); | |
$data['status'] = false; |