cancel
Showing results for 
Search instead for 
Did you mean: 
jagat
Member
since ‎04-18-2019
‎04-19-2019

Your latest statistics

  • 0 Replies
  • 0 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

The below code is my webhook funtion in CI PHP . I'm unable to get post data after webhook ping. please help out to get data on webhook so i can integrate the recurring subscription payment successfully . Thank you }public function webhook(){ $origin...
public function webhook(){ $original_array=$_POST; $string_version = implode(',', $original_array); $dc=array("amount"=> $string_version); $insrt = $this->Generalmodel->show_data_id('subscription_recurring','','','insert',$dc);} This is my webhook fu...